Get back to using $.throttle
This commit is contained in:
parent
f47b893cb8
commit
051562540c
|
@ -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: ->
|
||||
|
|
|
@ -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: ->
|
||||
|
|
Loading…
Reference in New Issue
Block a user