Skip to content

Instantly share code, notes, and snippets.

@weivall
Created October 13, 2012 19:42
Show Gist options
  • Save weivall/3885888 to your computer and use it in GitHub Desktop.
Save weivall/3885888 to your computer and use it in GitHub Desktop.
on resize timeout
var flag = false;
$(window).resize(function(){
if(flag === false){
setTimeout(function(){
$( '.scroll-pane' ).jScrollPane();
flag = false;
}, 300);
}
flag = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment