aboutsummaryrefslogtreecommitdiffstats
path: root/ui/source/ui.dialog.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-06-04 19:51:59 +0000
committerScott González <scott.gonzalez@gmail.com>2008-06-04 19:51:59 +0000
commit98f42fc80258bd8c9dc4299472889881e4be73fa (patch)
treea41ace777c18c8786a64a3f9a8085cbdd2b2ca97 /ui/source/ui.dialog.js
parentf17737b2d4b2fdd8bf474ac62a62176a9bd496bf (diff)
downloadjquery-ui-98f42fc80258bd8c9dc4299472889881e4be73fa.tar.gz
jquery-ui-98f42fc80258bd8c9dc4299472889881e4be73fa.zip
Core: Exposed the base widget prototype; Adding/removing disabled classes automatically.
Draggable, Droppable, Resizable, Selectable, Sortable: Removed unneeded enable/disable methods. Dialog: Delegating standard functionality for setData to the widget prototype.
Diffstat (limited to 'ui/source/ui.dialog.js')
-rw-r--r--ui/source/ui.dialog.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/source/ui.dialog.js b/ui/source/ui.dialog.js
index 4299910b3..be7df473a 100644
--- a/ui/source/ui.dialog.js
+++ b/ui/source/ui.dialog.js
@@ -171,7 +171,8 @@ $.widget("ui.dialog", {
this.uiDialog.width(value);
break;
}
- this.options[key] = value;
+
+ $.widget.prototype.setData.apply(this, arguments);
},
position: function(pos) {