aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorEduardo Lundgren <eduardolundgren@gmail.com>2009-02-09 03:56:02 +0000
committerEduardo Lundgren <eduardolundgren@gmail.com>2009-02-09 03:56:02 +0000
commit78e8a1b7890a0c650e4b6d339d91aa20d10260c0 (patch)
tree1edba310db11ff56c17a5aefc8e252fcb5b3679b /ui
parent0413807dfb45d44ae513d8522f6bc29b42ea8db1 (diff)
downloadjquery-ui-78e8a1b7890a0c650e4b6d339d91aa20d10260c0.tar.gz
jquery-ui-78e8a1b7890a0c650e4b6d339d91aa20d10260c0.zip
Resizable: Fixed #4098 - Remove transparent option
Diffstat (limited to 'ui')
-rw-r--r--ui/ui.resizable.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js
index cd250a09a..144f3fdf3 100644
--- a/ui/ui.resizable.js
+++ b/ui/ui.resizable.js
@@ -103,9 +103,6 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, {
if(this.handles[i].constructor == String)
this.handles[i] = $(this.handles[i], this.element).show();
- if (o.transparent)
- this.handles[i].css({ opacity: 0 });
-
//Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls)
if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) {
@@ -120,8 +117,7 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, {
/se|sw|s/.test(i) ? 'Bottom' :
/^e$/.test(i) ? 'Right' : 'Left' ].join("");
- if (!o.transparent)
- target.css(padPos, padWrapper);
+ target.css(padPos, padWrapper);
this._proportionallyResize();
@@ -521,7 +517,6 @@ $.extend($.ui.resizable, {
preserveCursor: true,
preventDefault: true,
proportionallyResize: false,
- transparent: false,
zIndex: 1000
}
});