/home/techb158/ileadtechnology.com/public/admin/bower_components/jquery-ui/ui
NameSizeModeActions
i18n/-0755rm
minified/-0755rm
.jshintrc3360644editdlrm
accordion.js150210644editdlrm
autocomplete.js163860644editdlrm
button.js113270644editdlrm
core.js76620644editdlrm
datepicker.js779730644editdlrm
dialog.js218050644editdlrm
draggable.js349940644editdlrm
droppable.js116560644editdlrm
effect-blind.js21010644editdlrm
effect-bounce.js29660644editdlrm
effect-clip.js16450644editdlrm
effect-drop.js16510644editdlrm
effect-explode.js25810644editdlrm
effect-fade.js7330644editdlrm
effect-fold.js18750644editdlrm
effect-highlight.js11790644editdlrm
effect-puff.js12360644editdlrm
effect-pulsate.js15510644editdlrm
effect-scale.js20030644editdlrm
effect-shake.js21290644editdlrm
effect-size.js62360644editdlrm
effect-slide.js16490644editdlrm
effect-transfer.js14100644editdlrm
effect.js322830644editdlrm
index.php530644editdlrm
menu.js169800644editdlrm
mouse.js53430644editdlrm
position.js160920644editdlrm
progressbar.js36660644editdlrm
resizable.js285840644editdlrm
selectable.js71360644editdlrm
selectmenu.js137640644editdlrm
slider.js192050644editdlrm
sortable.js433800644editdlrm
spinner.js129090644editdlrm
tabs.js231280644editdlrm
tooltip.js130450644editdlrm
widget.js158140644editdlrm
Edit: /home/techb158/ileadtechnology.com/public/admin/bower_components/jquery-ui/ui/dialog.js (21805B)
/*! * jQuery UI Dialog 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/dialog/ */ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define([ "jquery", "./core", "./widget", "./button", "./draggable", "./mouse", "./position", "./resizable" ], factory ); } else { // Browser globals factory( jQuery ); } }(function( $ ) { return $.widget( "ui.dialog", { version: "1.11.4", options: { appendTo: "body", autoOpen: true, buttons: [], closeOnEscape: true, closeText: "Close", dialogClass: "", draggable: true, hide: null, height: "auto", maxHeight: null, maxWidth: null, minHeight: 150, minWidth: 150, modal: false, position: { my: "center", at: "center", of: window, collision: "fit", // Ensure the titlebar is always visible using: function( pos ) { var topOffset = $( this ).css( pos ).offset().top; if ( topOffset < 0 ) { $( this ).css( "top", pos.top - topOffset ); } } }, resizable: true, show: null, title: null, width: 300, // callbacks beforeClose: null, close: null, drag: null, dragStart: null, dragStop: null, focus: null, open: null, resize: null, resizeStart: null, resizeStop: null }, sizeRelatedOptions: { buttons: true, height: true, maxHeight: true, maxWidth: true, minHeight: true, minWidth: true, width: true }, resizableRelatedOptions: { maxHeight: true, maxWidth: true, minHeight: true, minWidth: true }, _create: function() { this.originalCss = { display: this.element[ 0 ].style.display, width: this.element[ 0 ].style.width, minHeight: this.element[ 0 ].style.minHeight, maxHeight: this.element[ 0 ].style.maxHeight, height: this.element[ 0 ].style.height }; this.originalPosition = { parent: this.element.parent(), index: this.element.parent().children().index( this.element ) }; this.originalTitle = this.element.attr( "title" ); this.options.title = this.options.title || this.originalTitle; this._createWrapper(); this.element .show() .removeAttr( "title" ) .addClass( "ui-dialog-content ui-widget-content" ) .appendTo( this.uiDialog ); this._createTitlebar(); this._createButtonPane(); if ( this.options.draggable && $.fn.draggable ) { this._makeDraggable(); } if ( this.options.resizable && $.fn.resizable ) { this._makeResizable(); } this._isOpen = false; this._trackFocus(); }, _init: function() { if ( this.options.autoOpen ) { this.open(); } }, _appendTo: function() { var element = this.options.appendTo; if ( element && (element.jquery || element.nodeType) ) { return $( element ); } return this.document.find( element || "body" ).eq( 0 ); }, _destroy: function() { var next, originalPosition = this.originalPosition; this._untrackInstance(); this._destroyOverlay(); this.element .removeUniqueId() .removeClass( "ui-dialog-content ui-widget-content" ) .css( this.originalCss ) // Without detaching first, the following becomes really slow .detach(); this.uiDialog.stop( true, true ).remove(); if ( this.originalTitle ) { this.element.attr( "title", this.originalTitle ); } next = originalPosition.parent.children().eq( originalPosition.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 { originalPosition.parent.append( this.element ); } }, widget: function() { return this.uiDialog; }, disable: $.noop, enable: $.noop, close: function( event ) { var activeElement, that = this; if ( !this._isOpen || this._trigger( "beforeClose", event ) === false ) { return; } this._isOpen = false; this._focusedElement = null; this._destroyOverlay(); this._untrackInstance(); if ( !this.opener.filter( ":focusable" ).focus().length ) { // support: IE9 // IE9 throws an "Unspecified error" accessing document.activeElement from an