Change cursor if moving on map with pressed 'shift'

This commit is contained in:
Dominik Kundel 2014-03-13 02:50:09 +01:00
parent 8990b9d194
commit 60214abb41
2 changed files with 7 additions and 1 deletions

View file

@ -31,6 +31,10 @@ module.exports = class CoordinateDisplay extends createjs.Container
onMouseOut: (e) -> @mouseInBounds = false
onMouseMove: (e) ->
if @mouseInBounds and key.shift
$('#surface').addClass('flag-cursor') unless $('#surface').hasClass('flag-cursor')
else if @mouseInBounds
$('#surface').removeClass('flag-cursor') if $('#surface').hasClass('flag-cursor')
wop = @camera.canvasToWorld x: e.x, y: e.y
wop.x = Math.round(wop.x)
wop.y = Math.round(wop.y)
@ -44,7 +48,6 @@ module.exports = class CoordinateDisplay extends createjs.Container
wop = @camera.canvasToWorld x: e.x, y: e.y
wop.x = Math.round wop.x
wop.y = Math.round wop.y
console.log 'position', wop
Backbone.Mediator.publish 'surface:coordinate-selected', wop
onZoomUpdated: (e) ->

View file

@ -179,3 +179,6 @@ table.table
border: 1px solid black
.ui-slider-handle
border: 1px solid black !important
.flag-cursor
cursor: crosshair