From: Charles Holbrow Date: Tue, 26 Mar 2013 01:06:43 +0000 (-0400) Subject: Fix errorous animate timer on upload status bar X-Git-Tag: release-20150131~461 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5474761e3665f6717b5dad5101dd1586e994c8fa;p=oweals%2Fkarmaworld.git Fix errorous animate timer on upload status bar --- diff --git a/karmaworld/assets/js/lightboxupload.js b/karmaworld/assets/js/lightboxupload.js index 1f39837..725e70f 100644 --- a/karmaworld/assets/js/lightboxupload.js +++ b/karmaworld/assets/js/lightboxupload.js @@ -82,7 +82,7 @@ $(function(){ console.log(String((100*loaded/total)+'%')); // Animate the progress bar $('#progress-fill').animate({ - width: String((100*loaded/total)+'%')}, 5000); + width: String((100*loaded/total)+'%')}, 200); // fill out the filename $('#filename').text(fileName); },