JS bug
-
I think I’ve found a bug. The following code in management.js is causing my site to display incorrectly.
setTimeout(function(){ $('body').width($('body').width()+1).width('auto'); }, 500);This fixes the problem:
setTimeout(function(){ oldwidth = $('body').width(); $('body').width($('body').width()+1).width(oldwidth); }, 500);Regards, and thanks for this great plugin.
The topic ‘JS bug’ is closed to new replies.