mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Docs: Some demos still using jQuery < 1.7
This commit is contained in:
parent
288a06e6cf
commit
9b4f8b4a3d
@ -228,15 +228,15 @@
|
||||
}
|
||||
|
||||
// update stickyHeader when menu closes
|
||||
$('#main-nav-check').on('change', function(){
|
||||
$('#main-nav-check').bind('change', function(){
|
||||
setTimeout(function(){
|
||||
$(window).scroll();
|
||||
}, 350); // transition animation 300ms
|
||||
});
|
||||
|
||||
$(window).on('load', function(){
|
||||
$(window).bind('load', function(){
|
||||
if ($('#root').length) {
|
||||
$(window).on('hashchange', function(){
|
||||
$(window).bind('hashchange', function(){
|
||||
showProperty();
|
||||
});
|
||||
showProperty();
|
||||
@ -259,7 +259,7 @@
|
||||
});
|
||||
});
|
||||
|
||||
$('.toggleparsedvalue').on('click', function(){
|
||||
$('.toggleparsedvalue').bind('click', function(){
|
||||
$('.val').toggleClass('hidden');
|
||||
return false;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user