aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.dialog.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/ui.dialog.js')
-rw-r--r--ui/ui.dialog.js13
1 files changed, 3 insertions, 10 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js
index 9d8d26044..38c24c596 100644
--- a/ui/ui.dialog.js
+++ b/ui/ui.dialog.js
@@ -14,9 +14,6 @@
*/
(function($) {
-var widgetName = "dialog";
-var classWidgetName = ".dialog";
-
var setDataSwitch = {
dragStart: "start.draggable",
drag: "drag.draggable",
@@ -33,10 +30,6 @@ var setDataSwitch = {
$.widget("ui.dialog", {
_init: function() {
- // update widgetName with the name given by the widget factory
- widgetName = this.widgetName;
- classWidgetName = '.' + widgetName;
-
this.originalTitle = this.element.attr('title');
this.options.title = this.options.title || this.originalTitle;
@@ -68,7 +61,7 @@ $.widget("ui.dialog", {
&& ev.keyCode == $.ui.keyCode.ESCAPE && self.close());
})
.attr({
- role: widgetName,
+ role: 'dialog',
'aria-labelledby': titleId
})
.mousedown(function() {
@@ -159,8 +152,8 @@ $.widget("ui.dialog", {
(this.overlay && this.overlay.destroy());
this.uiDialog.hide();
this.element
- .unbind(classWidgetName)
- .removeData(widgetName)
+ .unbind('.dialog')
+ .removeData('dialog')
.removeClass('ui-dialog-content ui-widget-content')
.hide().appendTo('body');
this.uiDialog.remove();