public
Description: Quicky Growl-like implementation for Prototype
Clone URL: git://github.com/tdreyno/prototypegrowl.git
Click here to lend your support to: prototypegrowl and make a donation at www.pledgie.com !
standardize curly braces
tdreyno (author)
Sat Apr 05 11:19:24 -0700 2008
commit  2508e833e02e2547a9054dbe4858f15ad4701bd6
tree    4c48005da7ac7f9a2abaa654b40565a0c26c21cc
parent  ded0b9877408c6c9aef98cfb0138070dc1a64ea9
...
76
77
78
79
 
80
81
82
83
84
85
86
 
87
88
89
90
91
...
76
77
78
 
79
80
81
82
83
84
85
 
86
87
 
88
89
90
0
@@ -76,16 +76,15 @@ Growl.Base = Class.create({
0
   },
0
   
0
   hide: function(elem) {
0
- if (this.options.animated)
0
+ if (this.options.animated) {
0
       new Effect.Fade(elem, {
0
         duration: this.options.animated,
0
         afterFinishInternal: function(effect) {
0
           effect.element.remove();
0
         }
0
       })
0
- else {
0
+ } else
0
       elem.remove();
0
- }
0
   }
0
 });
0
 

Comments

    No one has commented yet.