From d6f85644d4bcf9b53e83cb7f0e4ed4716726ffc3 Mon Sep 17 00:00:00 2001 From: Scott González Date: Tue, 17 Sep 2013 09:30:03 -0400 Subject: Dialog: Move option category hashes into the widget prototype. --- ui/jquery.ui.dialog.js | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) (limited to 'ui') diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index cbae739bf..c5bd42ab5 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -19,22 +19,6 @@ */ (function( $, undefined ) { -var sizeRelatedOptions = { - buttons: true, - height: true, - maxHeight: true, - maxWidth: true, - minHeight: true, - minWidth: true, - width: true - }, - resizableRelatedOptions = { - maxHeight: true, - maxWidth: true, - minHeight: true, - minWidth: true - }; - $.widget( "ui.dialog", { version: "@VERSION", options: { @@ -83,6 +67,23 @@ $.widget( "ui.dialog", { 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, @@ -579,10 +580,10 @@ $.widget( "ui.dialog", { $.each( options, function( key, value ) { that._setOption( key, value ); - if ( key in sizeRelatedOptions ) { + if ( key in that.sizeRelatedOptions ) { resize = true; } - if ( key in resizableRelatedOptions ) { + if ( key in that.resizableRelatedOptions ) { resizableOptions[ key ] = value; } }); -- cgit v1.2.3