Sped up CoordinateDisplay hover based on Russ's feedback.

This commit is contained in:
Nick Winter 2014-02-23 09:55:40 -08:00
parent 2aa103dd87
commit 5f4d5afe4f

View file

@ -12,7 +12,7 @@ module.exports = class CoordinateDisplay extends createjs.Container
@camera = options.camera
console.error "CoordinateDisplay needs camera." unless @camera
@build()
@show = _.debounce @show, 250
@show = _.debounce @show, 125
Backbone.Mediator.subscribe(channel, @[func], @) for channel, func of @subscriptions
destroy: ->