diff options
Diffstat (limited to 'lib/gallery.common.js')
-rw-r--r-- | lib/gallery.common.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/gallery.common.js b/lib/gallery.common.js index 7c52fef0..da69e476 100644 --- a/lib/gallery.common.js +++ b/lib/gallery.common.js @@ -1,10 +1,9 @@ (function ($) { // Fade in action status message background color - $.fn.gallery_show_message = function(message) { + $.fn.gallery_show_message = function() { return this.each(function(i){ - $(this).effect("highlight", {"color": "white"}, 3000); - $(this).animate({opacity: 1.0}, 6000); + $(this).hide().fadeIn(3000) }); }; |