fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Fixed pjax links scrolling to top

Fixes #20
This commit is contained in:
Felipe Martin 2014-05-24 12:53:10 +02:00
parent e346e47591
commit 915abfac42
1 changed files with 6 additions and 1 deletions

View File

@ -41,6 +41,8 @@ $ ->
# PJAX
if $.support.pjax
$(document).on 'click', 'a[data-pjax]', (event) ->
event.preventDefault()
elem = $(@)
pjax = elem.data('pjax')
push = true
@ -65,12 +67,15 @@ $ ->
$.pjax.click event, {
container: container,
timeout: 5000,
push: push
push: push,
scrollTo: false
}
if elem.is('[pjax-messages]')
window._updateMessages = true
false
# Tooltips
$('[data-toggle="tooltip"]').tooltip();