Fix errorous animate timer on upload status bar
authorCharles Holbrow <charlesholbrow@gmail.com>
Tue, 26 Mar 2013 01:06:43 +0000 (21:06 -0400)
committerCharles Holbrow <charlesholbrow@gmail.com>
Tue, 26 Mar 2013 01:06:43 +0000 (21:06 -0400)
karmaworld/assets/js/lightboxupload.js

index 1f398374349edc54d3591f45caed781cc7186e54..725e70f5625282b0f0a6793afc32e77741f3c610 100644 (file)
@@ -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);
       },