diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 18:45:27 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 18:45:27 -0400 |
commit | 3ff2db226cf2b23f891ad50089668243d79586ea (patch) | |
tree | 88bdbb5bbb2b513b5564fbcee7b3fa04ebb63712 /ui/jquery.ui.resizable.js | |
parent | ab1d9b8ba17b106cee5855682744d102901a3864 (diff) | |
download | jquery-ui-3ff2db226cf2b23f891ad50089668243d79586ea.tar.gz jquery-ui-3ff2db226cf2b23f891ad50089668243d79586ea.zip |
Resizable: Remove IE hidden element hack. It seems illogical and I have no idea what it's trying to fix.
Diffstat (limited to 'ui/jquery.ui.resizable.js')
-rw-r--r-- | ui/jquery.ui.resizable.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index f9330e843..abe540c59 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -446,9 +446,6 @@ $.widget("ui.resizable", $.ui.mouse, { }); } - if ($.browser.msie && !(!($(element).is(':hidden') || $(element).parents(':hidden').length))) - continue; - prel.css({ height: (element.height() - this.borderDif[0] - this.borderDif[2]) || 0, width: (element.width() - this.borderDif[1] - this.borderDif[3]) || 0 |