From e12c56f8a0dc8da9e328123bb67235b1f89201fc Mon Sep 17 00:00:00 2001 From: iwasrobbed Date: Mon, 11 Jul 2011 18:44:20 -0400 Subject: [PATCH] Updated jQuery show method to have 'fast' in it's arguments so it will work with later versions of jQuery and Rails JS --- app/helpers/uploads_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/uploads_helper.rb b/app/helpers/uploads_helper.rb index 5f998cb..abc6ee1 100644 --- a/app/helpers/uploads_helper.rb +++ b/app/helpers/uploads_helper.rb @@ -114,7 +114,7 @@ def s3_uploader(options = {}) $('span.ui-label').show(); // start the uploader after the progress bar shows - $('#progress_bar').show(function () { + $('#progress_bar').show('fast', function () { uploader.start(); }); });