You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if you figured it out, but I did have the same issue. I added
loadie.show();
before the it modifies the width of the element
In Line 26 in jquery.loadie.js
Loadie.update=function(dom,percent){varloadie=$('#loadie-'+dom.data('loadie-id'),dom);varparentWidth=dom.width();loadie.show();//<-- this is where I added itloadie.css('width',Math.floor(percent*parentWidth)+"px");}
After calling
$("body").loadie(1.0)
, display is set to none,At that moment , if we call
$("body").loadie(0.3)
, the loadie is not shownThe text was updated successfully, but these errors were encountered: