jquery mobile 1.2.0 blank screen in chrome Version 43.0.2357.81 -
jquery mobile 1.2.0 version blank screen while slide in chrome version 43.0.2357.81 m. in other browsers ok.
already has answer.
check out answer here animation end webkitend bug
you're better off moving latest version.
edit
to fix - add somewhere before loading jquerymobile.js -
// override of $.fn.animationcomplete must called before initialise jquery mobile js $(document).bind('mobileinit', function() { $.fn.animationcomplete = function(callback) { if ($.support.csstransitions) { var superfy= "webkittransitionevent" in window ? "webkitanimationend" : "animationend"; return $(this).one(superfy, callback); } else { settimeout(callback, 0); return $(this); } }; })
Comments
Post a Comment