From 5f2b257ddc9344439fba6cf0ea7b6bd895cd0268 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 6 Nov 2017 15:51:48 -0500 Subject: [PATCH] Swap clockwise/counterclockwise rotation buttons, change glyphs --- modules/services/openstreetcam.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/services/openstreetcam.js b/modules/services/openstreetcam.js index e12dcec6a..bfcf2af25 100644 --- a/modules/services/openstreetcam.js +++ b/modules/services/openstreetcam.js @@ -315,13 +315,13 @@ export default { controlsEnter .append('button') - .on('click.rotate-cw', rotate(90)) - .text('↻'); + .on('click.rotate-ccw', rotate(-90)) + .text('⤿'); controlsEnter .append('button') - .on('click.rotate-ccw', rotate(-90)) - .text('↺'); + .on('click.rotate-cw', rotate(90)) + .text('⤾'); controlsEnter .append('button')