Get back to using $.throttle

This commit is contained in:
Piotr Sarnacki 2015-02-02 11:56:12 +01:00
parent f47b893cb8
commit 051562540c
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class Tailing
constructor: (@window, @tail_selector, @log_selector) ->
@position = @window.scrollTop()
@window.scroll( Ember.run.throttle(this, @onScroll, [], 200, false) )
@window.scroll( $.throttle( 200, @onScroll.bind(this) ) )
this
run: ->

View File

@ -6,7 +6,7 @@ class ToTop
# the calculations.
constructor: (@window, @element_selector, @container_selector) ->
@position = @window.scrollTop()
@window.scroll( Ember.run.throttle(this, @onScroll, [], 200, false) )
@window.scroll( $.throttle( 200, @onScroll.bind(this) ) )
this
element: ->