diff options
author | Aaron Eisenberger <aaronchi@gmail.com> | 2008-06-26 16:01:46 +0000 |
---|---|---|
committer | Aaron Eisenberger <aaronchi@gmail.com> | 2008-06-26 16:01:46 +0000 |
commit | ea87259568f367f6ea3bd04447e572f599a481d1 (patch) | |
tree | 3214729c714b45247fef09766d43c02f26751d16 /ui/effects.scale.js | |
parent | 269801ad84dddc92094e642653def2559c626077 (diff) | |
download | jquery-ui-ea87259568f367f6ea3bd04447e572f599a481d1.tar.gz jquery-ui-ea87259568f367f6ea3bd04447e572f599a481d1.zip |
include top,left in restore props until I can figure out a better way to keep positions for relative sizing
Diffstat (limited to 'ui/effects.scale.js')
-rw-r--r-- | ui/effects.scale.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/effects.scale.js b/ui/effects.scale.js index 3a3056454..53ef15901 100644 --- a/ui/effects.scale.js +++ b/ui/effects.scale.js @@ -90,7 +90,7 @@ $.effects.size = function(o) { // Create element var el = $(this), props = ['position','top','left','width','height','overflow','opacity']; - var props1 = ['position','overflow','opacity']; // Always restore + var props1 = ['position','top','letf','overflow','opacity']; // Always restore var props2 = ['width','height','overflow']; // Copy for children var cProps = ['fontSize']; var vProps = ['borderTopWidth', 'borderBottomWidth', 'paddingTop', 'paddingBottom']; |