Created
March 26, 2009 05:56
-
-
Save steida/85925 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var el = new Element('div', { | |
style: 'position: absolute; width: 100px; height: 100px; background-color: red' | |
}).inject(document.body); | |
var styles = { clip: 'rect(10px 90px 90px 10px)' }; | |
//el.setStyles(styles); // ok | |
el.morph(styles); // doesn't work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment