From 3a491e9ad79e5e4485df9edadd514a9b2a530128 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Wed, 24 Jan 2018 13:21:47 +0800 Subject: [PATCH 01/14] with minimize and restore button in title with minimize and restore button in title --- themes/base/dialog.css | 18 ++++++++++++++++ themes/base/theme.css | 2 ++ ui/widgets/dialog.js | 48 +++++++++++++++++++++++++++++++++++++++++- 3 files changed, 67 insertions(+), 1 deletion(-) diff --git a/themes/base/dialog.css b/themes/base/dialog.css index 7146fe95364..b1725417bb8 100644 --- a/themes/base/dialog.css +++ b/themes/base/dialog.css @@ -36,6 +36,24 @@ padding: 1px; height: 20px; } +.ui-dialog .ui-dialog-titlebar-minimize { + position: absolute; + right: 2.1em; + top: 50%; + width: 20px; + margin: -10px 0 0 0; + padding: 1px; + height: 20px; +} +.ui-dialog .ui-dialog-titlebar-restore { + position: absolute; + right: 3.8em; + top: 50%; + width: 20px; + margin: -10px 0 0 0; + padding: 1px; + height: 20px; +} .ui-dialog .ui-dialog-content { position: relative; border: 0; diff --git a/themes/base/theme.css b/themes/base/theme.css index bb097bf296e..51e557ab88b 100644 --- a/themes/base/theme.css +++ b/themes/base/theme.css @@ -331,6 +331,8 @@ a.ui-button:active, .ui-icon-minus { background-position: -48px -128px; } .ui-icon-minusthick { background-position: -64px -128px; } .ui-icon-close { background-position: -80px -128px; } +.ui-icon-restore { background-position: -176px -128px; } +.ui-icon-minimize { background-position: -48px -128px; } .ui-icon-closethick { background-position: -96px -128px; } .ui-icon-key { background-position: -112px -128px; } .ui-icon-lightbulb { background-position: -128px -128px; } diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index 01780daf317..48270bc6b06 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -55,6 +55,8 @@ $.widget( "ui.dialog", { }, closeOnEscape: true, closeText: "Close", + minimizeText: "Minimize", + restoreText: "Restore", draggable: true, hide: null, height: "auto", @@ -441,7 +443,51 @@ $.widget( "ui.dialog", { this.close( event ); } } ); - + + this.uiDialogTitlebarMinimize = $( "" ) + .button( { + label: $( "" ).text( this.options.minimizeText ).html(), + icon: "ui-icon ui-icon-minimize", + showLabel: false + } ) + .appendTo( this.uiDialogTitlebar ); + this._addClass( this.uiDialogTitlebarMinimize, "ui-dialog-titlebar-minimize" ); + this._on( this.uiDialogTitlebarMinimize, { + click: function( event ) { + event.preventDefault(); + this.options.restoreWidth = this.options.width; + this.options.restoreHeight = this.options.height; + this.uiDialog.width(300); + this.uiDialog.height(this.uiDialogButtonPane.height); + this.element.hide(); + this.uiDialogButtonPane.hide(); + this.uiDialogTitlebarRestore.button("enable"); + this.uiDialogTitlebarMinimize.button( "disable" ); + } + } ); + this.uiDialogTitlebarRestore = $( "" ) + .button( { + label: $( "" ).text( this.options.restoreText ).html(), + icon: "ui-icon ui-icon-restore", + showLabel: false + } ) + .appendTo( this.uiDialogTitlebar ); + this._addClass( this.uiDialogTitlebarRestore, "ui-dialog-titlebar-restore" ); + this._on( this.uiDialogTitlebarRestore, { + click: function( event ) { + event.preventDefault(); + if(this.options.restoreWidth != undefined && this.options.restoreWidth != null && this.options.restoreWidth != "") + this.uiDialog.width(this.options.restoreWidth); + if(this.options.restoreHeight != undefined && this.options.restoreHeight != null && this.options.restoreHeight != "") + this.uiDialog.height(this.options.restoreHeight); + this.element.show(); + this.uiDialogButtonPane.show(); + this.uiDialogTitlebarMinimize.button( "enable" ); + this.uiDialogTitlebarRestore.button( "disable" ); + } + } ); + this.uiDialogTitlebarRestore.button( "disable" ); + uiDialogTitle = $( "" ).uniqueId().prependTo( this.uiDialogTitlebar ); this._addClass( uiDialogTitle, "ui-dialog-title" ); this._title( uiDialogTitle ); From cc26b7382b41d367d78428f32816b729b3091fa2 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Wed, 24 Jan 2018 14:21:07 +0800 Subject: [PATCH 02/14] With minimize and restore button in dialog title With minimize and restore button in dialog title --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index fd04188ab89..be9ed99af2e 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,6 @@ For more information, see the [contributing page](CONTRIBUTING.md). Run the unit tests manually with appropriate browsers and any local web server. See our [environment setup](CONTRIBUTING.md#environment-minimum-required) and [information on running tests](CONTRIBUTING.md#running-the-tests). You can also run the unit tests inside phantomjs by [setting up your environment](CONTRIBUTING.md#user-content-environment-recommended-setup). + +## jQuery-UI-x +With minimize and restore button in dialog title, based on jquery-ui. From e7879691c79d6a4dddb5b1cf8535de7ce559be78 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Tue, 30 Jan 2018 16:11:13 +0800 Subject: [PATCH 03/14] fix height problem when minimize fix height problem when minimize --- ui/widgets/dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index 48270bc6b06..9ffe5faeaf0 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -458,7 +458,7 @@ $.widget( "ui.dialog", { this.options.restoreWidth = this.options.width; this.options.restoreHeight = this.options.height; this.uiDialog.width(300); - this.uiDialog.height(this.uiDialogButtonPane.height); + this.uiDialog.height(0); this.element.hide(); this.uiDialogButtonPane.hide(); this.uiDialogTitlebarRestore.button("enable"); From b4075e59af519669be508dfa6f189eb4f07e6031 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Mon, 31 May 2021 17:06:47 +0800 Subject: [PATCH 04/14] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index be9ed99af2e..16c5edb9b32 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# jQuery-UI-x +jQuery UI with minimize and restore button in dialog title. + # [jQuery UI](http://jqueryui.com/) - Interactions and Widgets for the web jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of jQuery. Whether you're building highly interactive web applications, or you just need to add a date picker to a form control, jQuery UI is the perfect choice. @@ -28,6 +31,3 @@ For more information, see the [contributing page](CONTRIBUTING.md). Run the unit tests manually with appropriate browsers and any local web server. See our [environment setup](CONTRIBUTING.md#environment-minimum-required) and [information on running tests](CONTRIBUTING.md#running-the-tests). You can also run the unit tests inside phantomjs by [setting up your environment](CONTRIBUTING.md#user-content-environment-recommended-setup). - -## jQuery-UI-x -With minimize and restore button in dialog title, based on jquery-ui. From 725fe9d245b0f68994143718d1bedbc951fd0c08 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Fri, 15 Oct 2021 22:25:38 +0800 Subject: [PATCH 05/14] fix title bar width and height issue fix title bar height bug fix title bar width issue fix title bar width issue Delete dialog.js fix title bar width issue fix title bar width issuec --- ui/widgets/dialog.js | 94 +++++++++++++++++++++++--------------------- 1 file changed, 49 insertions(+), 45 deletions(-) diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index b412398fe97..6c00182c199 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -447,51 +447,55 @@ $.widget( "ui.dialog", { this.close( event ); } } ); - - this.uiDialogTitlebarMinimize = $( "" ) - .button( { - label: $( "" ).text( this.options.minimizeText ).html(), - icon: "ui-icon ui-icon-minimize", - showLabel: false - } ) - .appendTo( this.uiDialogTitlebar ); - this._addClass( this.uiDialogTitlebarMinimize, "ui-dialog-titlebar-minimize" ); - this._on( this.uiDialogTitlebarMinimize, { - click: function( event ) { - event.preventDefault(); - this.options.restoreWidth = this.options.width; - this.options.restoreHeight = this.options.height; - this.uiDialog.width(300); - this.uiDialog.height(0); - this.element.hide(); - this.uiDialogButtonPane.hide(); - this.uiDialogTitlebarRestore.button("enable"); - this.uiDialogTitlebarMinimize.button( "disable" ); - } - } ); - this.uiDialogTitlebarRestore = $( "" ) - .button( { - label: $( "" ).text( this.options.restoreText ).html(), - icon: "ui-icon ui-icon-restore", - showLabel: false - } ) - .appendTo( this.uiDialogTitlebar ); - this._addClass( this.uiDialogTitlebarRestore, "ui-dialog-titlebar-restore" ); - this._on( this.uiDialogTitlebarRestore, { - click: function( event ) { - event.preventDefault(); - if(this.options.restoreWidth != undefined && this.options.restoreWidth != null && this.options.restoreWidth != "") - this.uiDialog.width(this.options.restoreWidth); - if(this.options.restoreHeight != undefined && this.options.restoreHeight != null && this.options.restoreHeight != "") - this.uiDialog.height(this.options.restoreHeight); - this.element.show(); - this.uiDialogButtonPane.show(); - this.uiDialogTitlebarMinimize.button( "enable" ); - this.uiDialogTitlebarRestore.button( "disable" ); - } - } ); - this.uiDialogTitlebarRestore.button( "disable" ); - + + this.uiDialogTitlebarMinimize = $( "" ) + .button( { + label: $( "" ).text( this.options.minimizeText ).html(), + icon: "ui-icon ui-icon-minimize", + showLabel: false + } ) + .appendTo( this.uiDialogTitlebar ); + this._addClass( this.uiDialogTitlebarMinimize, "ui-dialog-titlebar-minimize" ); + this._on( this.uiDialogTitlebarMinimize, { + click: function( event ) { + event.preventDefault(); + this.options.restoreWidth = this.options.width; + this.options.restoreHeight = this.options.height; + this.uiDialog.width( this.uiDialogTitlebar.outerWidth() > 300 ? 300 : this.uiDialogTitlebar.outerWidth() ); + this.uiDialog.height( this.uiDialogTitlebar.outerHeight() ); + this.element.hide(); + this.uiDialogButtonPane.hide(); + this.uiDialogTitlebarRestore.button( "enable" ); + this.uiDialogTitlebarMinimize.button( "disable" ); + } + } ); + this.uiDialogTitlebarRestore = $( "" ) + .button( { + label: $( "" ).text( this.options.restoreText ).html(), + icon: "ui-icon ui-icon-restore", + showLabel: false + } ) + .appendTo( this.uiDialogTitlebar ); + this._addClass( this.uiDialogTitlebarRestore, "ui-dialog-titlebar-restore" ); + this._on( this.uiDialogTitlebarRestore, { + click: function( event ) { + event.preventDefault(); + if ( this.options.restoreWidth !== undefined && + this.options.restoreWidth !== null && this.options.restoreWidth !== "" ) { + this.uiDialog.width( this.options.restoreWidth ); + } + if ( this.options.restoreHeight !== undefined && + this.options.restoreHeight !== null && this.options.restoreHeight !== "" ) { + this.uiDialog.height( this.options.restoreHeight ); + } + this.element.show(); + this.uiDialogButtonPane.show(); + this.uiDialogTitlebarMinimize.button( "enable" ); + this.uiDialogTitlebarRestore.button( "disable" ); + } + } ); + this.uiDialogTitlebarRestore.button( "disable" ); + uiDialogTitle = $( "" ).uniqueId().prependTo( this.uiDialogTitlebar ); this._addClass( uiDialogTitle, "ui-dialog-title" ); this._title( uiDialogTitle ); From de7e52930c95c2f74610c2dda691d9da4d85b48a Mon Sep 17 00:00:00 2001 From: Uplusware Date: Fri, 15 Oct 2021 22:45:27 +0800 Subject: [PATCH 06/14] Update README.md Update README.md Update README.md Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 569c4ff330d..aa6cbd7b16a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # jQuery-UI-x -jQuery UI with minimize and restore button in dialog title. +My jQuery UI with minimize and restore button in dialog title. + +The PR: https://github.com/jquery/jquery-ui/pull/1967 # [jQuery UI](http://jqueryui.com/) - Interactions and Widgets for the web From b306e5910d7d2b4fd10c883035c562e20d12e87a Mon Sep 17 00:00:00 2001 From: Uplusware Date: Tue, 19 Oct 2021 20:24:12 +0800 Subject: [PATCH 07/14] make minimizable feature can be disabled and enabled and add test case make minimizable feature can be disabled and enabled and add test case --- demos/dialog/minimizable.html | 26 ++++++++++ ui/widgets/dialog.js | 93 ++++++++++++++++++----------------- 2 files changed, 74 insertions(+), 45 deletions(-) create mode 100644 demos/dialog/minimizable.html diff --git a/demos/dialog/minimizable.html b/demos/dialog/minimizable.html new file mode 100644 index 00000000000..e876d16c254 --- /dev/null +++ b/demos/dialog/minimizable.html @@ -0,0 +1,26 @@ + + + + + + jQuery UI Dialog - Minimizable dialog + + + + + + + + + This is the dialog which can be minimized and restored. + + + +This is the dialog which can be minimized and restored. + + + diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index 6c00182c199..cee0c358e11 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -61,6 +61,7 @@ $.widget( "ui.dialog", { minimizeText: "Minimize", restoreText: "Restore", draggable: true, + minimizable: false, hide: null, height: "auto", maxHeight: null, @@ -448,53 +449,55 @@ $.widget( "ui.dialog", { } } ); - this.uiDialogTitlebarMinimize = $( "" ) - .button( { - label: $( "" ).text( this.options.minimizeText ).html(), - icon: "ui-icon ui-icon-minimize", - showLabel: false - } ) - .appendTo( this.uiDialogTitlebar ); - this._addClass( this.uiDialogTitlebarMinimize, "ui-dialog-titlebar-minimize" ); - this._on( this.uiDialogTitlebarMinimize, { - click: function( event ) { - event.preventDefault(); - this.options.restoreWidth = this.options.width; - this.options.restoreHeight = this.options.height; - this.uiDialog.width( this.uiDialogTitlebar.outerWidth() > 300 ? 300 : this.uiDialogTitlebar.outerWidth() ); - this.uiDialog.height( this.uiDialogTitlebar.outerHeight() ); - this.element.hide(); - this.uiDialogButtonPane.hide(); - this.uiDialogTitlebarRestore.button( "enable" ); - this.uiDialogTitlebarMinimize.button( "disable" ); - } - } ); - this.uiDialogTitlebarRestore = $( "" ) - .button( { - label: $( "" ).text( this.options.restoreText ).html(), - icon: "ui-icon ui-icon-restore", - showLabel: false - } ) - .appendTo( this.uiDialogTitlebar ); - this._addClass( this.uiDialogTitlebarRestore, "ui-dialog-titlebar-restore" ); - this._on( this.uiDialogTitlebarRestore, { - click: function( event ) { - event.preventDefault(); - if ( this.options.restoreWidth !== undefined && - this.options.restoreWidth !== null && this.options.restoreWidth !== "" ) { - this.uiDialog.width( this.options.restoreWidth ); + if ( this.options.minimizable ) { + this.uiDialogTitlebarMinimize = $( "" ) + .button( { + label: $( "" ).text( this.options.minimizeText ).html(), + icon: "ui-icon ui-icon-minimize", + showLabel: false + } ) + .appendTo( this.uiDialogTitlebar ); + this._addClass( this.uiDialogTitlebarMinimize, "ui-dialog-titlebar-minimize" ); + this._on( this.uiDialogTitlebarMinimize, { + click: function( event ) { + event.preventDefault(); + this.options.restoreWidth = this.options.width; + this.options.restoreHeight = this.options.height; + this.uiDialog.width( this.uiDialogTitlebar.outerWidth() > 300 ? 300 : this.uiDialogTitlebar.outerWidth() ); + this.uiDialog.height( this.uiDialogTitlebar.outerHeight() ); + this.element.hide(); + this.uiDialogButtonPane.hide(); + this.uiDialogTitlebarRestore.button( "enable" ); + this.uiDialogTitlebarMinimize.button( "disable" ); } - if ( this.options.restoreHeight !== undefined && - this.options.restoreHeight !== null && this.options.restoreHeight !== "" ) { - this.uiDialog.height( this.options.restoreHeight ); + } ); + this.uiDialogTitlebarRestore = $( "" ) + .button( { + label: $( "" ).text( this.options.restoreText ).html(), + icon: "ui-icon ui-icon-restore", + showLabel: false + } ) + .appendTo( this.uiDialogTitlebar ); + this._addClass( this.uiDialogTitlebarRestore, "ui-dialog-titlebar-restore" ); + this._on( this.uiDialogTitlebarRestore, { + click: function( event ) { + event.preventDefault(); + if ( this.options.restoreWidth !== undefined && + this.options.restoreWidth !== null && this.options.restoreWidth !== "" ) { + this.uiDialog.width( this.options.restoreWidth ); + } + if ( this.options.restoreHeight !== undefined && + this.options.restoreHeight !== null && this.options.restoreHeight !== "" ) { + this.uiDialog.height( this.options.restoreHeight ); + } + this.element.show(); + this.uiDialogButtonPane.show(); + this.uiDialogTitlebarMinimize.button( "enable" ); + this.uiDialogTitlebarRestore.button( "disable" ); } - this.element.show(); - this.uiDialogButtonPane.show(); - this.uiDialogTitlebarMinimize.button( "enable" ); - this.uiDialogTitlebarRestore.button( "disable" ); - } - } ); - this.uiDialogTitlebarRestore.button( "disable" ); + } ); + this.uiDialogTitlebarRestore.button( "disable" ); + } uiDialogTitle = $( "" ).uniqueId().prependTo( this.uiDialogTitlebar ); this._addClass( uiDialogTitle, "ui-dialog-title" ); From 473edf32f78ca102cbc67e943bac5bfaf278a44e Mon Sep 17 00:00:00 2001 From: Uplusware Date: Tue, 19 Oct 2021 21:21:35 +0800 Subject: [PATCH 08/14] add test case into dialog index.html add test case into dialog index.html --- demos/dialog/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/demos/dialog/index.html b/demos/dialog/index.html index 5ba8452d57c..f792abe3475 100644 --- a/demos/dialog/index.html +++ b/demos/dialog/index.html @@ -9,6 +9,7 @@ Default functionality + Minimizable dialog Modal message Modal confirmation Modal form From 83ae561556dfbeafa0e2763a127d0a3b9b245428 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Thu, 21 Oct 2021 09:54:42 +0800 Subject: [PATCH 09/14] Update dialog.js Update dialog.js --- ui/widgets/dialog.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index cee0c358e11..0498f249833 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -463,7 +463,9 @@ $.widget( "ui.dialog", { event.preventDefault(); this.options.restoreWidth = this.options.width; this.options.restoreHeight = this.options.height; - this.uiDialog.width( this.uiDialogTitlebar.outerWidth() > 300 ? 300 : this.uiDialogTitlebar.outerWidth() ); + this.uiDialog.width( this.uiDialogTitlebar.outerWidth() > 300 ? + 300 : + this.uiDialogTitlebar.outerWidth() ); this.uiDialog.height( this.uiDialogTitlebar.outerHeight() ); this.element.hide(); this.uiDialogButtonPane.hide(); @@ -483,11 +485,13 @@ $.widget( "ui.dialog", { click: function( event ) { event.preventDefault(); if ( this.options.restoreWidth !== undefined && - this.options.restoreWidth !== null && this.options.restoreWidth !== "" ) { + this.options.restoreWidth !== null && + this.options.restoreWidth !== "" ) { this.uiDialog.width( this.options.restoreWidth ); } if ( this.options.restoreHeight !== undefined && - this.options.restoreHeight !== null && this.options.restoreHeight !== "" ) { + this.options.restoreHeight !== null && + this.options.restoreHeight !== "" ) { this.uiDialog.height( this.options.restoreHeight ); } this.element.show(); From 209ae408d80f61530de87d00c2991e1c24a356f1 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Thu, 21 Oct 2021 10:17:58 +0800 Subject: [PATCH 10/14] Update common-deprecated.js and common.js Update common.js Update common.js Update common.js --- tests/unit/dialog/common-deprecated.js | 3 +++ tests/unit/dialog/common.js | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/unit/dialog/common-deprecated.js b/tests/unit/dialog/common-deprecated.js index 1efdcb03018..4c58c0a6b24 100644 --- a/tests/unit/dialog/common-deprecated.js +++ b/tests/unit/dialog/common-deprecated.js @@ -14,9 +14,12 @@ common.testWidget( "dialog", { }, closeOnEscape: true, closeText: "Close", + minimizeText: "Minimize", + restoreText: "Restore", dialogClass: "", disabled: false, draggable: true, + minimizable: false, height: "auto", hide: null, maxHeight: null, diff --git a/tests/unit/dialog/common.js b/tests/unit/dialog/common.js index c8d885ad03f..cd3a82c835a 100644 --- a/tests/unit/dialog/common.js +++ b/tests/unit/dialog/common.js @@ -14,8 +14,11 @@ common.testWidget( "dialog", { }, closeOnEscape: true, closeText: "Close", + minimizeText: "Minimize", + restoreText: "Restore", disabled: false, draggable: true, + minimizable: false, height: "auto", hide: null, maxHeight: null, From 237f507471314a882d6a04d387c1338d50543fd6 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Thu, 18 Nov 2021 13:53:39 +0800 Subject: [PATCH 11/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa6cbd7b16a..cfb5b41b5f2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # jQuery-UI-x -My jQuery UI with minimize and restore button in dialog title. +My jQuery UI with minimize and restore button in the title bar for dialog widget. The PR: https://github.com/jquery/jquery-ui/pull/1967 From cc43692cd01f0adf14965b9be621bcc2e417f959 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Mon, 22 Nov 2021 18:26:47 +0800 Subject: [PATCH 12/14] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cfb5b41b5f2..ff22e91bf16 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# jQuery-UI-x -My jQuery UI with minimize and restore button in the title bar for dialog widget. +# jQuery-UI-x - jQuery UI with minimize/restore button for dialog widget. + The PR: https://github.com/jquery/jquery-ui/pull/1967 From 8a12b7ee4282e44f37d1213fe5c5e276c4b3b235 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Mon, 22 Nov 2021 18:27:56 +0800 Subject: [PATCH 13/14] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ff22e91bf16..03c24d11df3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -# jQuery-UI-x - jQuery UI with minimize/restore button for dialog widget. +# jQuery-UI-x +## jQuery UI with minimize/restore button for dialog widget. The PR: https://github.com/jquery/jquery-ui/pull/1967 From ff682f52651415a5651227ba5ab3637f93f0a775 Mon Sep 17 00:00:00 2001 From: Uplusware Date: Mon, 22 Nov 2021 18:28:31 +0800 Subject: [PATCH 14/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03c24d11df3..50b9ce5fb2a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # jQuery-UI-x -## jQuery UI with minimize/restore button for dialog widget. +jQuery UI with minimize/restore button for dialog widget. The PR: https://github.com/jquery/jquery-ui/pull/1967
This is the dialog which can be minimized and restored.