Navigation Menu

Skip to content

Commit

Permalink
fixes #735. Problem is that when you do this.style['zIndex'] it gets …
Browse files Browse the repository at this point in the history
…0 incorrectly.
  • Loading branch information
fabiomcosta committed Apr 7, 2010
1 parent 125731c commit 8438371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Element/Element.Style.js
Expand Up @@ -84,7 +84,7 @@ Element.implement({
}
property = property.camelCase();
var result = this.style[property];
if (!$chk(result)){
if (!$chk(result) || property == 'zIndex'){
result = [];
for (var style in Element.ShortStyles){
if (property != style) continue;
Expand Down

0 comments on commit 8438371

Please sign in to comment.