Docs: Some demos still using jQuery < 1.7

This commit is contained in:
Rob Garrison 2016-07-11 18:04:21 -05:00
parent 288a06e6cf
commit 9b4f8b4a3d
No known key found for this signature in database
GPG Key ID: 0A42D160D71978E1

View File

@ -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;
});