Take the 2008 Git User's Survey and help out! [ hide ]

public
Fork of tdreyno/prototypegrowl
Description: Prototype & Scriptaculous implementation of the OS X growl notification bubbles
Homepage: http://www.craigjolicoeur.com/pgrowl
Clone URL: git://github.com/cpjolicoeur/prototypegrowl.git
Search Repo:
document.body.insert was throwing an error in IE6
cpjolicoeur (author)
Tue Apr 22 13:27:39 -0700 2008
commit  c57949511b70fb1bd69622261bf57a4bb9508b88
tree    31d06f7bd6ad13a85186a59abfe76ecab9d1c94d
parent  0e63909197a89a67d9c8ed2ee4a1d9c412495cfd
...
40
41
42
43
 
44
45
46
...
40
41
42
 
43
44
45
46
0
@@ -40,7 +40,7 @@ Growl.Base = Class.create({
0
     elem.insert({ bottom: new Element('img') });
0
     elem.insert({ bottom: new Element('h3') });
0
     elem.insert({ bottom: new Element('p') });
0
- document.body.insert({ bottom: elem });
0
+ $(document.body).insert({ bottom: elem });
0
     elem.setOpacity(this.options.opacity);
0
     
0
     return elem;

Comments

    No one has commented yet.