Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4883

Show
Ignore:
Timestamp:
08/30/06 18:21:34 (2 years ago)
Author:
sam
Message:

whoops

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/src/dom.js

    r4882 r4883  
    6666  }, 
    6767 
    68   hide: function() { 
     68  hide: function(element) { 
    6969    $(element).style.display = 'none'; 
    7070    return element; 
    7171  }, 
    7272   
    73   show: function() { 
     73  show: function(element) { 
    7474    $(element).style.display = ''; 
    7575    return element;