From 3ff2db226cf2b23f891ad50089668243d79586ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 14 Jun 2012 18:45:27 -0400 Subject: [PATCH] Resizable: Remove IE hidden element hack. It seems illogical and I have no idea what it's trying to fix. --- ui/jquery.ui.resizable.js | 3 --- 1 file changed, 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 -- 2.39.5