diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-07-16 16:32:35 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-07-16 16:32:35 +0000 |
commit | c35ed2cab5db5b9e48e63ce723eeab8eb73190cc (patch) | |
tree | 03e94c647c49552cfb56df58caf0f1660f5bb590 /ui | |
parent | dcdccf0789e80142198d5fb493c320300880bd26 (diff) | |
download | jquery-ui-c35ed2cab5db5b9e48e63ce723eeab8eb73190cc.tar.gz jquery-ui-c35ed2cab5db5b9e48e63ce723eeab8eb73190cc.zip |
Dialog: Removed drag and resize option handling from setDataSwitch hash (legacy from when dialog didn't have its own events).
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.dialog.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index a4a9f5625..b0c2d4545 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -15,15 +15,9 @@ (function($) { var setDataSwitch = { - dragStart: "start.draggable", - drag: "drag.draggable", - dragStop: "stop.draggable", maxHeight: "maxHeight.resizable", maxWidth: "maxWidth.resizable", - minWidth: "minWidth.resizable", - resizeStart: "start.resizable", - resize: "drag.resizable", - resizeStop: "stop.resizable" + minWidth: "minWidth.resizable" }, uiDialogClasses = |