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

Changeset 7359

Show
Ignore:
Timestamp:
08/27/07 18:37:49 (1 year ago)
Author:
madrobby
Message:

Make sure setting opacity works on elements that have "no layout" in IE.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/trunk/CHANGELOG

    r7358 r7359  
    11*SVN* 
     2 
     3* Make sure setting opacity works on elements that have "no layout" in IE.  [Thomas Fuchs] 
    24 
    35* Simplify Class.create by establishing a prototype chain when subclassing.  Closes #9342.  [Ben Newman] 
  • spinoffs/prototype/trunk/src/dom.js

    r7334 r7359  
    781781    } 
    782782    element = $(element); 
     783    if (!element.currentStyle.hasLayout) element.style.zoom = 1; 
    783784    var filter = element.getStyle('filter'), style = element.style; 
    784785    if (value == 1 || value === '') {