jquery-ui/ui/jquery.ui.dialog.js

697 lines
17 KiB
JavaScript
Raw Normal View History

/*!
* jQuery UI Dialog @VERSION
2012-07-04 13:08:08 +00:00
* http://jqueryui.com
2008-06-04 02:34:33 +00:00
*
2012-07-04 13:08:08 +00:00
* Copyright 2012 jQuery Foundation and other contributors
2012-08-09 14:13:24 +00:00
* Released under the MIT license.
* http://jquery.org/license
*
2012-09-26 23:06:20 +00:00
* http://api.jqueryui.com/dialog/
2008-06-04 02:34:33 +00:00
*
* Depends:
* jquery.ui.core.js
2010-02-03 23:30:37 +00:00
* jquery.ui.widget.js
* jquery.ui.button.js
* jquery.ui.draggable.js
* jquery.ui.mouse.js
* jquery.ui.position.js
* jquery.ui.resizable.js
2008-06-04 02:34:33 +00:00
*/
(function( $, undefined ) {
2008-06-04 02:34:33 +00:00
var uiDialogClasses = "ui-dialog ui-widget ui-widget-content ui-corner-all ui-front ",
sizeRelatedOptions = {
buttons: true,
height: true,
maxHeight: true,
maxWidth: true,
minHeight: true,
minWidth: true,
width: true
},
resizableRelatedOptions = {
maxHeight: true,
maxWidth: true,
minHeight: true,
minWidth: true
};
2008-06-04 02:34:33 +00:00
$.widget("ui.dialog", {
version: "@VERSION",
options: {
autoOpen: true,
buttons: {},
closeOnEscape: true,
2010-12-18 00:53:22 +00:00
closeText: "close",
dialogClass: "",
draggable: true,
hide: null,
2010-12-18 00:53:22 +00:00
height: "auto",
maxHeight: false,
maxWidth: false,
minHeight: 150,
minWidth: 150,
modal: false,
position: {
2010-12-18 00:53:22 +00:00
my: "center",
at: "center",
of: window,
2010-12-18 00:53:22 +00:00
collision: "fit",
// ensure that the titlebar is never outside the document
2010-12-18 00:53:22 +00:00
using: function( pos ) {
var topOffset = $( this ).css( pos ).offset().top;
if ( topOffset < 0 ) {
$( this ).css( "top", pos.top - topOffset );
}
}
},
resizable: true,
show: null,
2010-12-18 00:53:22 +00:00
title: "",
width: 300
},
2010-07-16 12:54:50 +00:00
_create: function() {
2010-12-18 00:53:22 +00:00
this.originalTitle = this.element.attr( "title" );
// #5742 - .attr() might return a DOMElement
if ( typeof this.originalTitle !== "string" ) {
this.originalTitle = "";
2012-04-19 01:57:51 +00:00
}
this.oldPosition = {
parent: this.element.parent(),
index: this.element.parent().children().index( this.element )
};
this.options.title = this.options.title || this.originalTitle;
var that = this,
options = this.options,
2010-12-18 00:53:22 +00:00
title = options.title || "&#160;",
uiDialog,
uiDialogTitlebar,
uiDialogTitlebarClose,
uiDialogTitle,
uiDialogButtonPane;
uiDialog = ( this.uiDialog = $( "<div>" ) )
2010-12-18 00:53:22 +00:00
.addClass( uiDialogClasses + options.dialogClass )
.hide()
// setting tabIndex makes the div focusable
2010-12-18 00:53:22 +00:00
.attr( "tabIndex", -1)
.keydown(function( event ) {
if ( options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode &&
2010-12-18 00:53:22 +00:00
event.keyCode === $.ui.keyCode.ESCAPE ) {
that.close( event );
event.preventDefault();
}
})
2010-12-18 00:53:22 +00:00
.mousedown(function( event ) {
that.moveToTop( event );
})
.appendTo( this.document[ 0 ].body );
this.element
.show()
2010-12-18 00:53:22 +00:00
.removeAttr( "title" )
.addClass( "ui-dialog-content ui-widget-content" )
.appendTo( uiDialog );
2010-12-18 00:53:22 +00:00
uiDialogTitlebar = ( this.uiDialogTitlebar = $( "<div>" ) )
2010-12-18 00:53:22 +00:00
.addClass( "ui-dialog-titlebar ui-widget-header " +
"ui-corner-all ui-helper-clearfix" )
.bind( "mousedown", function() {
// Dialog isn't getting focus when dragging (#8063)
uiDialog.focus();
})
.prependTo( uiDialog );
2010-12-18 00:53:22 +00:00
uiDialogTitlebarClose = $( "<a href='#'></a>" )
2010-12-18 00:53:22 +00:00
.addClass( "ui-dialog-titlebar-close ui-corner-all" )
.attr( "role", "button" )
.click(function( event ) {
event.preventDefault();
that.close( event );
2008-12-11 02:48:20 +00:00
})
.appendTo( uiDialogTitlebar );
( this.uiDialogTitlebarCloseText = $( "<span>" ) )
2010-12-18 00:53:22 +00:00
.addClass( "ui-icon ui-icon-closethick" )
.text( options.closeText )
.appendTo( uiDialogTitlebarClose );
2010-12-18 00:53:22 +00:00
uiDialogTitle = $( "<span>" )
.uniqueId()
2010-12-18 00:53:22 +00:00
.addClass( "ui-dialog-title" )
.html( title )
.prependTo( uiDialogTitlebar );
uiDialogButtonPane = ( this.uiDialogButtonPane = $( "<div>" ) )
.addClass( "ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" );
( this.uiButtonSet = $( "<div>" ) )
.addClass( "ui-dialog-buttonset" )
.appendTo( uiDialogButtonPane );
uiDialog.attr({
role: "dialog",
"aria-labelledby": uiDialogTitle.attr( "id" )
});
// We assume that any existing aria-describedby attribute means
// that the dialog content is marked up properly
// otherwise we brute force the content as the description
if ( !this.element.find( "[aria-describedby]" ).length ) {
uiDialog.attr({
"aria-describedby": this.element.uniqueId().attr( "id" )
});
}
2010-12-18 00:53:22 +00:00
uiDialogTitlebar.find( "*" ).add( uiDialogTitlebar ).disableSelection();
this._hoverable( uiDialogTitlebarClose );
this._focusable( uiDialogTitlebarClose );
2010-12-18 00:53:22 +00:00
if ( options.draggable && $.fn.draggable ) {
this._makeDraggable();
2010-03-12 01:10:57 +00:00
}
2010-12-18 00:53:22 +00:00
if ( options.resizable && $.fn.resizable ) {
this._makeResizable();
2010-03-12 01:10:57 +00:00
}
this._createButtons( options.buttons );
this._isOpen = false;
// prevent tabbing out of dialogs
this._on( uiDialog, { keydown: function( event ) {
if ( event.keyCode !== $.ui.keyCode.TAB ) {
return;
}
var tabbables = $( ":tabbable", uiDialog ),
first = tabbables.filter( ":first" ),
last = tabbables.filter( ":last" );
if ( ( event.target === last[ 0 ] || event.target === uiDialog[ 0 ] ) && !event.shiftKey ) {
first.focus( 1 );
return false;
} else if ( ( event.target === first[ 0 ] || event.target === uiDialog[ 0 ] ) && event.shiftKey ) {
last.focus( 1 );
return false;
}
}});
},
2010-07-16 12:54:50 +00:00
_init: function() {
if ( this.options.autoOpen ) {
this.open();
}
2008-06-04 02:34:33 +00:00
},
_destroy: function() {
var next,
oldPosition = this.oldPosition;
if ( this.overlay ) {
this.overlay.destroy();
2010-03-12 01:10:57 +00:00
}
this.uiDialog.hide();
this.element
.removeUniqueId()
2010-12-18 00:53:22 +00:00
.removeClass( "ui-dialog-content ui-widget-content" )
.hide()
.appendTo( "body" );
this.uiDialog.remove();
if ( this.originalTitle ) {
this.element.attr( "title", this.originalTitle );
2010-03-12 01:10:57 +00:00
}
2012-04-19 01:57:51 +00:00
next = oldPosition.parent.children().eq( oldPosition.index );
// Don't try to place the dialog next to itself (#8613)
if ( next.length && next[ 0 ] !== this.element[ 0 ] ) {
next.before( this.element );
} else {
oldPosition.parent.append( this.element );
2012-04-19 01:57:51 +00:00
}
2008-09-14 14:49:28 +00:00
},
2010-07-16 12:54:50 +00:00
widget: function() {
return this.uiDialog;
},
2010-12-18 00:53:22 +00:00
close: function( event ) {
var that = this;
2012-04-02 23:12:21 +00:00
if ( !this._isOpen ) {
return;
}
if ( false === this._trigger( "beforeClose", event ) ) {
return;
}
this._isOpen = false;
if ( this.overlay ) {
this.overlay.destroy();
2010-03-12 01:10:57 +00:00
}
if ( !this.opener.filter( ":focusable" ).focus().length ) {
// Hiding a focused element doesn't trigger blur in WebKit
// so in case we have nothing to focus on, explicitly blur the active element
// https://bugs.webkit.org/show_bug.cgi?id=47182
$( this.document[ 0 ].activeElement ).blur();
}
this._hide( this.uiDialog, this.options.hide, function() {
that._trigger( "close", event );
});
2008-09-14 14:49:28 +00:00
},
2008-09-14 14:49:28 +00:00
isOpen: function() {
return this._isOpen;
},
moveToTop: function( event, silent ) {
var moved = this.uiDialog.nextAll( ":visible" ).insertBefore( this.uiDialog );
if ( !silent && moved.length ) {
this._trigger( "focus", event );
2010-03-12 01:10:57 +00:00
}
2008-09-29 13:08:14 +00:00
},
open: function() {
2010-12-18 00:53:22 +00:00
if ( this._isOpen ) {
return;
}
2012-04-02 23:12:21 +00:00
var hasFocus,
options = this.options,
uiDialog = this.uiDialog;
this.opener = $( this.document[ 0 ].activeElement );
this._size();
this._position( options.position );
this.overlay = options.modal ? new $.ui.dialog.overlay( this ) : null;
this.moveToTop( null, true );
this._show( uiDialog, options.show );
// set focus to the first tabbable element in the content area or the first button
// if there are no tabbable elements, set focus on the dialog itself
hasFocus = this.element.find( ":tabbable" );
if ( !hasFocus.length ) {
hasFocus = this.uiDialogButtonPane.find( ":tabbable" );
if ( !hasFocus.length ) {
hasFocus = uiDialog;
}
}
hasFocus.eq( 0 ).focus();
this._isOpen = true;
this._trigger( "open" );
this._trigger( "focus" );
return this;
2008-09-14 14:49:28 +00:00
},
_keepFocus: function( event ) {
function checkFocus() {
var activeElement = this.document[ 0 ].activeElement,
isActive = this.uiDialog[ 0 ] === activeElement ||
$.contains( this.uiDialog[ 0 ], activeElement );
if ( !isActive ) {
this.uiDialog.focus();
}
}
event.preventDefault();
checkFocus.call( this );
// support: IE
// IE <= 8 doesn't prevent moving focus even with event.preventDefault()
// so we check again later
this._delay( checkFocus );
},
2010-12-18 00:53:22 +00:00
_createButtons: function( buttons ) {
var that = this,
hasButtons = false;
// if we already have a button pane, remove it
this.uiDialogButtonPane.remove();
this.uiButtonSet.empty();
2010-12-18 00:53:22 +00:00
if ( typeof buttons === "object" && buttons !== null ) {
$.each( buttons, function() {
2010-03-12 01:10:57 +00:00
return !(hasButtons = true);
});
}
2010-12-18 00:53:22 +00:00
if ( hasButtons ) {
$.each( buttons, function( name, props ) {
var button, click;
props = $.isFunction( props ) ?
{ click: props, text: name } :
props;
// Default to a non-submitting button
props = $.extend( { type: "button" }, props );
// Change the context for the click callback to be the main element
click = props.click;
props.click = function() {
click.apply( that.element[0], arguments );
};
button = $( "<button></button>", props )
.appendTo( that.uiButtonSet );
2010-12-18 00:53:22 +00:00
if ( $.fn.button ) {
2010-03-12 01:10:57 +00:00
button.button();
}
2008-09-14 14:49:28 +00:00
});
this.uiDialog.addClass( "ui-dialog-buttons" );
this.uiDialogButtonPane.appendTo( this.uiDialog );
} else {
this.uiDialog.removeClass( "ui-dialog-buttons" );
2008-09-14 14:49:28 +00:00
}
},
2008-09-14 14:49:28 +00:00
_makeDraggable: function() {
var that = this,
options = this.options;
2010-12-18 00:53:22 +00:00
function filteredUi( ui ) {
return {
position: ui.position,
offset: ui.offset
};
}
this.uiDialog.draggable({
2010-12-18 00:53:22 +00:00
cancel: ".ui-dialog-content, .ui-dialog-titlebar-close",
handle: ".ui-dialog-titlebar",
containment: "document",
start: function( event, ui ) {
$( this )
.addClass( "ui-dialog-dragging" );
that._trigger( "dragStart", event, filteredUi( ui ) );
2008-09-14 14:49:28 +00:00
},
2010-12-18 00:53:22 +00:00
drag: function( event, ui ) {
that._trigger( "drag", event, filteredUi( ui ) );
2008-09-14 14:49:28 +00:00
},
2010-12-18 00:53:22 +00:00
stop: function( event, ui ) {
options.position = [
ui.position.left - that.document.scrollLeft(),
ui.position.top - that.document.scrollTop()
2010-12-18 00:53:22 +00:00
];
$( this )
.removeClass( "ui-dialog-dragging" );
that._trigger( "dragStop", event, filteredUi( ui ) );
2008-09-14 14:49:28 +00:00
}
});
},
2010-12-18 00:53:22 +00:00
_makeResizable: function( handles ) {
handles = (handles === undefined ? this.options.resizable : handles);
var that = this,
options = this.options,
// .ui-resizable has position: relative defined in the stylesheet
// but dialogs have to use absolute or fixed positioning
position = this.uiDialog.css( "position" ),
2010-12-18 00:53:22 +00:00
resizeHandles = typeof handles === 'string' ?
2010-03-12 01:10:57 +00:00
handles :
2010-12-18 00:53:22 +00:00
"n,e,s,w,se,sw,ne,nw";
2010-12-18 00:53:22 +00:00
function filteredUi( ui ) {
return {
originalPosition: ui.originalPosition,
originalSize: ui.originalSize,
position: ui.position,
size: ui.size
};
}
this.uiDialog.resizable({
2010-12-18 00:53:22 +00:00
cancel: ".ui-dialog-content",
containment: "document",
alsoResize: this.element,
maxWidth: options.maxWidth,
maxHeight: options.maxHeight,
minWidth: options.minWidth,
minHeight: this._minHeight(),
handles: resizeHandles,
2010-12-18 00:53:22 +00:00
start: function( event, ui ) {
$( this ).addClass( "ui-dialog-resizing" );
that._trigger( "resizeStart", event, filteredUi( ui ) );
},
2010-12-18 00:53:22 +00:00
resize: function( event, ui ) {
that._trigger( "resize", event, filteredUi( ui ) );
},
2010-12-18 00:53:22 +00:00
stop: function( event, ui ) {
$( this ).removeClass( "ui-dialog-resizing" );
options.height = $( this ).height();
options.width = $( this ).width();
that._trigger( "resizeStop", event, filteredUi( ui ) );
}
})
2010-12-18 00:53:22 +00:00
.css( "position", position )
.find( ".ui-resizable-se" )
.addClass( "ui-icon ui-icon-grip-diagonal-se" );
},
_minHeight: function() {
var options = this.options;
2010-12-18 00:53:22 +00:00
if ( options.height === "auto" ) {
2010-03-12 01:10:57 +00:00
return options.minHeight;
} else {
2010-12-18 00:53:22 +00:00
return Math.min( options.minHeight, options.height );
2010-03-12 01:10:57 +00:00
}
},
2010-12-18 00:53:22 +00:00
_position: function( position ) {
var myAt = [],
2010-12-18 00:53:22 +00:00
offset = [ 0, 0 ],
2010-03-12 01:10:57 +00:00
isVisible;
2010-12-18 00:53:22 +00:00
if ( position ) {
// deep extending converts arrays to objects in jQuery <= 1.3.2 :-(
// if (typeof position == 'string' || $.isArray(position)) {
// myAt = $.isArray(position) ? position : position.split(' ');
2010-12-18 00:53:22 +00:00
if ( typeof position === "string" || (typeof position === "object" && "0" in position ) ) {
myAt = position.split ? position.split( " " ) : [ position[ 0 ], position[ 1 ] ];
if ( myAt.length === 1 ) {
myAt[ 1 ] = myAt[ 0 ];
}
2009-09-30 02:48:09 +00:00
2010-12-18 00:53:22 +00:00
$.each( [ "left", "top" ], function( i, offsetPosition ) {
if ( +myAt[ i ] === myAt[ i ] ) {
offset[ i ] = myAt[ i ];
myAt[ i ] = offsetPosition;
}
});
2010-07-16 12:54:50 +00:00
position = {
my: myAt[0] + (offset[0] < 0 ? offset[0] : "+" + offset[0]) + " " +
myAt[1] + (offset[1] < 0 ? offset[1] : "+" + offset[1]),
at: myAt.join( " " )
};
}
2010-07-16 12:54:50 +00:00
2010-12-18 00:53:22 +00:00
position = $.extend( {}, $.ui.dialog.prototype.options.position, position );
} else {
position = $.ui.dialog.prototype.options.position;
2008-06-04 02:34:33 +00:00
}
// need to show the dialog to get the actual offset in the position plugin
2010-12-18 00:53:22 +00:00
isVisible = this.uiDialog.is( ":visible" );
if ( !isVisible ) {
2010-01-07 04:47:17 +00:00
this.uiDialog.show();
}
2010-12-18 00:53:22 +00:00
this.uiDialog.position( position );
if ( !isVisible ) {
2010-01-07 04:47:17 +00:00
this.uiDialog.hide();
}
2008-06-04 02:34:33 +00:00
},
_setOptions: function( options ) {
var that = this,
resizableOptions = {},
resize = false;
2010-07-16 12:54:50 +00:00
$.each( options, function( key, value ) {
that._setOption( key, value );
if ( key in sizeRelatedOptions ) {
resize = true;
}
if ( key in resizableRelatedOptions ) {
resizableOptions[ key ] = value;
}
});
if ( resize ) {
this._size();
}
if ( this.uiDialog.is( ":data(ui-resizable)" ) ) {
this.uiDialog.resizable( "option", resizableOptions );
}
},
2010-12-18 00:53:22 +00:00
_setOption: function( key, value ) {
2012-04-02 23:12:21 +00:00
var isDraggable, isResizable,
uiDialog = this.uiDialog;
2010-12-18 00:53:22 +00:00
switch ( key ) {
2008-09-14 14:49:28 +00:00
case "buttons":
this._createButtons( value );
2008-09-14 14:49:28 +00:00
break;
case "closeText":
// ensure that we always pass a string
this.uiDialogTitlebarCloseText.text( "" + value );
break;
case "dialogClass":
uiDialog
.removeClass( this.options.dialogClass )
2010-12-18 00:53:22 +00:00
.addClass( uiDialogClasses + value );
break;
case "disabled":
2010-12-18 00:53:22 +00:00
if ( value ) {
uiDialog.addClass( "ui-dialog-disabled" );
2010-03-12 01:10:57 +00:00
} else {
2010-12-18 00:53:22 +00:00
uiDialog.removeClass( "ui-dialog-disabled" );
2010-03-12 01:10:57 +00:00
}
break;
2008-09-14 14:49:28 +00:00
case "draggable":
isDraggable = uiDialog.is( ":data(ui-draggable)" );
if ( isDraggable && !value ) {
uiDialog.draggable( "destroy" );
}
if ( !isDraggable && value ) {
this._makeDraggable();
2010-03-12 01:10:57 +00:00
}
2008-09-14 14:49:28 +00:00
break;
case "position":
this._position( value );
2008-09-14 14:49:28 +00:00
break;
case "resizable":
// currently resizable, becoming non-resizable
isResizable = uiDialog.is( ":data(ui-resizable)" );
2010-12-18 00:53:22 +00:00
if ( isResizable && !value ) {
uiDialog.resizable( "destroy" );
2010-03-12 01:10:57 +00:00
}
2008-09-14 14:49:28 +00:00
// currently resizable, changing handles
2010-12-18 00:53:22 +00:00
if ( isResizable && typeof value === "string" ) {
uiDialog.resizable( "option", "handles", value );
2010-03-12 01:10:57 +00:00
}
2008-09-14 14:49:28 +00:00
// currently non-resizable, becoming resizable
2010-12-18 00:53:22 +00:00
if ( !isResizable && value !== false ) {
this._makeResizable( value );
2010-03-12 01:10:57 +00:00
}
break;
2008-09-14 14:49:28 +00:00
case "title":
// convert whatever was passed in o a string, for html() to not throw up
$( ".ui-dialog-title", this.uiDialogTitlebar )
2010-12-18 00:53:22 +00:00
.html( "" + ( value || "&#160;" ) );
2008-09-14 14:49:28 +00:00
break;
}
this._super( key, value );
2008-09-14 14:49:28 +00:00
},
_size: function() {
2012-10-29 18:37:06 +00:00
// If the user has resized the dialog, the .ui-dialog and .ui-dialog-content
// divs will both have width and height set, so we need to reset them
var nonContentHeight, minContentHeight,
options = this.options;
// reset content sizing
this.element.show().css({
2010-12-18 00:53:22 +00:00
width: "auto",
minHeight: 0,
height: 0
});
2010-12-18 00:53:22 +00:00
if ( options.minWidth > options.width ) {
options.width = options.minWidth;
}
// reset wrapper sizing
// determine the height of all the non-content elements
2010-03-12 01:10:57 +00:00
nonContentHeight = this.uiDialog.css({
2010-12-18 00:53:22 +00:00
height: "auto",
width: options.width
})
.outerHeight();
minContentHeight = Math.max( 0, options.minHeight - nonContentHeight );
if ( options.height === "auto" ) {
this.element.css({
minHeight: minContentHeight,
height: "auto"
});
} else {
this.element.height( Math.max( options.height - nonContentHeight, 0 ) );
}
if (this.uiDialog.is( ":data(ui-resizable)" ) ) {
2010-12-18 00:53:22 +00:00
this.uiDialog.resizable( "option", "minHeight", this._minHeight() );
2010-03-12 01:10:57 +00:00
}
2008-06-04 02:34:33 +00:00
}
});
$.extend($.ui.dialog, {
uuid: 0,
2008-11-21 04:17:19 +00:00
getTitleId: function($el) {
2010-12-18 00:53:22 +00:00
var id = $el.attr( "id" );
if ( !id ) {
2010-03-12 01:10:57 +00:00
this.uuid += 1;
id = this.uuid;
}
2010-12-18 00:53:22 +00:00
return "ui-dialog-title-" + id;
},
2010-12-18 00:53:22 +00:00
overlay: function( dialog ) {
this.$el = $.ui.dialog.overlay.create( dialog );
2008-06-04 02:34:33 +00:00
}
});
2010-12-18 00:53:22 +00:00
$.extend( $.ui.dialog.overlay, {
2008-06-04 02:34:33 +00:00
instances: [],
// reuse old instances due to IE memory leak with alpha transparency (see #5185)
oldInstances: [],
2010-12-18 00:53:22 +00:00
create: function( dialog ) {
2012-05-07 13:57:18 +00:00
var $el = ( this.oldInstances.pop() || $( "<div>" ).addClass( "ui-widget-overlay ui-front" ) );
2012-05-07 13:57:18 +00:00
$el.appendTo( document.body );
$el.bind( "mousedown", function( event ) {
dialog._keepFocus( event );
});
2010-12-18 00:53:22 +00:00
this.instances.push( $el );
2008-06-04 02:34:33 +00:00
return $el;
},
2010-12-18 00:53:22 +00:00
destroy: function( $el ) {
var indexOf = $.inArray( $el, this.instances );
2012-04-02 23:12:21 +00:00
2010-12-18 00:53:22 +00:00
if ( indexOf !== -1 ) {
this.oldInstances.push( this.instances.splice( indexOf, 1 )[ 0 ] );
}
2010-12-18 00:53:22 +00:00
if ( this.instances.length === 0 ) {
$( [ document, window ] ).unbind( ".dialog-overlay" );
2008-06-04 02:34:33 +00:00
}
$el.remove();
2008-06-04 02:34:33 +00:00
}
});
2010-12-18 00:53:22 +00:00
$.extend( $.ui.dialog.overlay.prototype, {
2008-06-04 02:34:33 +00:00
destroy: function() {
2010-12-18 00:53:22 +00:00
$.ui.dialog.overlay.destroy( this.$el );
2008-06-04 02:34:33 +00:00
}
});
2010-12-18 00:53:22 +00:00
}( jQuery ) );