Skip to content
Snippets Groups Projects
Commit 45f9cca9 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Unbind document scroll on page:fetch to disable endlessScroll on pages where it is not used

parent 98cf0ae3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -50,7 +50,11 @@ window.startSpinner = ->
window.stopSpinner = ->
$('.turbolink-spinner').fadeOut()
 
window.stopEndlessScroll = ->
$(document).unbind('scroll')
document.addEventListener("page:fetch", startSpinner)
document.addEventListener("page:fetch", stopEndlessScroll)
document.addEventListener("page:receive", stopSpinner)
 
$ ->
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment