From d5bc9bfd4f6a45e766b2371cc97108f31d4ff09e Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 20 Apr 2023 14:28:22 -0400 Subject: merge: add buttons for help and about --- .../web/lib/jquery-ui-1.11.4.custom.js | 1257 +++++++++++++++++++- 1 file changed, 1256 insertions(+), 1 deletion(-) (limited to 'radicale_infcloud/web/lib') diff --git a/radicale_infcloud/web/lib/jquery-ui-1.11.4.custom.js b/radicale_infcloud/web/lib/jquery-ui-1.11.4.custom.js index fa650d7..8114968 100644 --- a/radicale_infcloud/web/lib/jquery-ui-1.11.4.custom.js +++ b/radicale_infcloud/web/lib/jquery-ui-1.11.4.custom.js @@ -1,6 +1,7 @@ /*! jQuery UI - v1.11.4 - 2015-03-15 * http://jqueryui.com * Includes: core.js, widget.js, mouse.js, position.js, draggable.js, droppable.js, resizable.js, autocomplete.js, datepicker.js, menu.js, slider.js +* added back in button.js, dialog.js * Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */ (function( factory ) { @@ -5443,6 +5444,403 @@ $.widget( "ui.autocomplete", $.ui.autocomplete, { var autocomplete = $.ui.autocomplete; +/*! + * jQuery UI Button 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/button/ + */ + + +var lastActive, + baseClasses = "ui-button ui-widget ui-state-default ui-corner-all", + typeClasses = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only", + formResetHandler = function() { + var form = $( this ); + setTimeout(function() { + form.find( ":ui-button" ).button( "refresh" ); + }, 1 ); + }, + radioGroup = function( radio ) { + var name = radio.name, + form = radio.form, + radios = $( [] ); + if ( name ) { + name = name.replace( /'/g, "\\'" ); + if ( form ) { + radios = $( form ).find( "[name='" + name + "'][type=radio]" ); + } else { + radios = $( "[name='" + name + "'][type=radio]", radio.ownerDocument ) + .filter(function() { + return !this.form; + }); + } + } + return radios; + }; + +$.widget( "ui.button", { + version: "1.11.4", + defaultElement: "