2 Reverts: horde/js/growler.js
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 25 May 2010 04:23:23 +0000 (22:23 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 25 May 2010 04:23:46 +0000 (22:23 -0600)
Revert "Reset opacity when growler is removed from screen"
This reverts commit 9c14811e5d527bc1328a8b9803311bf4e736cd07.

Revert "Fade notifications on mouseover."
This reverts commit cae456751b929bbc9d94d4b4a4a34ed94aaa3856.

horde/js/growler.js

index 02ace41..9e85e05 100644 (file)
@@ -89,7 +89,7 @@
                 try {
                     n.remove();
                     if (!$('Growler').childElements().size()) {
-                        $('Growler').hide().setOpacity(1);
+                        $('Growler').hide();
                     }
                 } catch (e) {}
             }
             }
 
             this.growler.wrap(document.body);
-
-            this.growler.observe('mouseenter', function() {
-                this.growler.fade({
-                    duration: 0.25,
-                    queue: { limit: 2, scope: 'growler' },
-                    to: 0.3
-                });
-            }.bind(this));
-            this.growler.observe('mouseleave', function() {
-                this.growler.appear({
-                    duration: 0.25,
-                    queue: { limit: 2, scope: 'growler' },
-                    to: 1
-                });
-            }.bind(this));
         },
 
         growl: function(msg, options)