GRAYBYTE WORDPRESS FILE MANAGER8583

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/ccsactwb3.org/new2/wp-includes/js/jquery/ui/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/ccsactwb3.org/new2/wp-includes/js/jquery/ui//checkboxradio.js
/*!
 * jQuery UI Checkboxradio 1.13.3
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 */

//>>label: Checkboxradio
//>>group: Widgets
//>>description: Enhances a form with multiple themeable checkboxes or radio buttons.
//>>docs: https://api.jqueryui.com/checkboxradio/
//>>demos: https://jqueryui.com/checkboxradio/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/button.css
//>>css.structure: ../../themes/base/checkboxradio.css
//>>css.theme: ../../themes/base/theme.css

( function( factory ) {
	"use strict";

	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [
			"jquery",
			"../form-reset-mixin",
			"../labels",
			"../widget"
		], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} )( function( $ ) {
"use strict";

$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
	version: "1.13.3",
	options: {
		disabled: null,
		label: null,
		icon: true,
		classes: {
			"ui-checkboxradio-label": "ui-corner-all",
			"ui-checkboxradio-icon": "ui-corner-all"
		}
	},

	_getCreateOptions: function() {
		var disabled, labels, labelContents;
		var options = this._super() || {};

		// We read the type here, because it makes more sense to throw a element type error first,
		// rather then the error for lack of a label. Often if its the wrong type, it
		// won't have a label (e.g. calling on a div, btn, etc)
		this._readType();

		labels = this.element.labels();

		// If there are multiple labels, use the last one
		this.label = $( labels[ labels.length - 1 ] );
		if ( !this.label.length ) {
			$.error( "No label found for checkboxradio widget" );
		}

		this.originalLabel = "";

		// We need to get the label text but this may also need to make sure it does not contain the
		// input itself.
		// The label contents could be text, html, or a mix. We wrap all elements
		// and read the wrapper's `innerHTML` to get a string representation of
		// the label, without the input as part of it.
		labelContents = this.label.contents().not( this.element[ 0 ] );

		if ( labelContents.length ) {
			this.originalLabel += labelContents
				.clone()
				.wrapAll( "<div></div>" )
				.parent()
				.html();
		}

		// Set the label option if we found label text
		if ( this.originalLabel ) {
			options.label = this.originalLabel;
		}

		disabled = this.element[ 0 ].disabled;
		if ( disabled != null ) {
			options.disabled = disabled;
		}
		return options;
	},

	_create: function() {
		var checked = this.element[ 0 ].checked;

		this._bindFormResetHandler();

		if ( this.options.disabled == null ) {
			this.options.disabled = this.element[ 0 ].disabled;
		}

		this._setOption( "disabled", this.options.disabled );
		this._addClass( "ui-checkboxradio", "ui-helper-hidden-accessible" );
		this._addClass( this.label, "ui-checkboxradio-label", "ui-button ui-widget" );

		if ( this.type === "radio" ) {
			this._addClass( this.label, "ui-checkboxradio-radio-label" );
		}

		if ( this.options.label && this.options.label !== this.originalLabel ) {
			this._updateLabel();
		} else if ( this.originalLabel ) {
			this.options.label = this.originalLabel;
		}

		this._enhance();

		if ( checked ) {
			this._addClass( this.label, "ui-checkboxradio-checked", "ui-state-active" );
		}

		this._on( {
			change: "_toggleClasses",
			focus: function() {
				this._addClass( this.label, null, "ui-state-focus ui-visual-focus" );
			},
			blur: function() {
				this._removeClass( this.label, null, "ui-state-focus ui-visual-focus" );
			}
		} );
	},

	_readType: function() {
		var nodeName = this.element[ 0 ].nodeName.toLowerCase();
		this.type = this.element[ 0 ].type;
		if ( nodeName !== "input" || !/radio|checkbox/.test( this.type ) ) {
			$.error( "Can't create checkboxradio on element.nodeName=" + nodeName +
				" and element.type=" + this.type );
		}
	},

	// Support jQuery Mobile enhanced option
	_enhance: function() {
		this._updateIcon( this.element[ 0 ].checked );
	},

	widget: function() {
		return this.label;
	},

	_getRadioGroup: function() {
		var group;
		var name = this.element[ 0 ].name;
		var nameSelector = "input[name='" + $.escapeSelector( name ) + "']";

		if ( !name ) {
			return $( [] );
		}

		if ( this.form.length ) {
			group = $( this.form[ 0 ].elements ).filter( nameSelector );
		} else {

			// Not inside a form, check all inputs that also are not inside a form
			group = $( nameSelector ).filter( function() {
				return $( this )._form().length === 0;
			} );
		}

		return group.not( this.element );
	},

	_toggleClasses: function() {
		var checked = this.element[ 0 ].checked;
		this._toggleClass( this.label, "ui-checkboxradio-checked", "ui-state-active", checked );

		if ( this.options.icon && this.type === "checkbox" ) {
			this._toggleClass( this.icon, null, "ui-icon-check ui-state-checked", checked )
				._toggleClass( this.icon, null, "ui-icon-blank", !checked );
		}

		if ( this.type === "radio" ) {
			this._getRadioGroup()
				.each( function() {
					var instance = $( this ).checkboxradio( "instance" );

					if ( instance ) {
						instance._removeClass( instance.label,
							"ui-checkboxradio-checked", "ui-state-active" );
					}
				} );
		}
	},

	_destroy: function() {
		this._unbindFormResetHandler();

		if ( this.icon ) {
			this.icon.remove();
			this.iconSpace.remove();
		}
	},

	_setOption: function( key, value ) {

		// We don't allow the value to be set to nothing
		if ( key === "label" && !value ) {
			return;
		}

		this._super( key, value );

		if ( key === "disabled" ) {
			this._toggleClass( this.label, null, "ui-state-disabled", value );
			this.element[ 0 ].disabled = value;

			// Don't refresh when setting disabled
			return;
		}
		this.refresh();
	},

	_updateIcon: function( checked ) {
		var toAdd = "ui-icon ui-icon-background ";

		if ( this.options.icon ) {
			if ( !this.icon ) {
				this.icon = $( "<span>" );
				this.iconSpace = $( "<span> </span>" );
				this._addClass( this.iconSpace, "ui-checkboxradio-icon-space" );
			}

			if ( this.type === "checkbox" ) {
				toAdd += checked ? "ui-icon-check ui-state-checked" : "ui-icon-blank";
				this._removeClass( this.icon, null, checked ? "ui-icon-blank" : "ui-icon-check" );
			} else {
				toAdd += "ui-icon-blank";
			}
			this._addClass( this.icon, "ui-checkboxradio-icon", toAdd );
			if ( !checked ) {
				this._removeClass( this.icon, null, "ui-icon-check ui-state-checked" );
			}
			this.icon.prependTo( this.label ).after( this.iconSpace );
		} else if ( this.icon !== undefined ) {
			this.icon.remove();
			this.iconSpace.remove();
			delete this.icon;
		}
	},

	_updateLabel: function() {

		// Remove the contents of the label ( minus the icon, icon space, and input )
		var contents = this.label.contents().not( this.element[ 0 ] );
		if ( this.icon ) {
			contents = contents.not( this.icon[ 0 ] );
		}
		if ( this.iconSpace ) {
			contents = contents.not( this.iconSpace[ 0 ] );
		}
		contents.remove();

		this.label.append( this.options.label );
	},

	refresh: function() {
		var checked = this.element[ 0 ].checked,
			isDisabled = this.element[ 0 ].disabled;

		this._updateIcon( checked );
		this._toggleClass( this.label, "ui-checkboxradio-checked", "ui-state-active", checked );
		if ( this.options.label !== null ) {
			this._updateLabel();
		}

		if ( isDisabled !== this.options.disabled ) {
			this._setOptions( { "disabled": isDisabled } );
		}
	}

} ] );

return $.ui.checkboxradio;

} );

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 06 2025 17:29:05
giriqfky / giriqfky
0755
accordion.js
15.76 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
accordion.min.js
8.652 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
autocomplete.js
17.119 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
autocomplete.min.js
8.336 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
button.js
11.432 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
button.min.js
6.01 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
checkboxradio.js
7.411 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
checkboxradio.min.js
4.246 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
controlgroup.js
8.424 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
controlgroup.min.js
4.299 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
core.js
48.719 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
core.min.js
20.961 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
datepicker.js
80.589 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
datepicker.min.js
35.887 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
dialog.js
23.336 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
dialog.min.js
12.791 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
draggable.js
34.713 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
draggable.min.js
17.988 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
droppable.js
12.597 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
droppable.min.js
6.509 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-blind.js
1.605 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-blind.min.js
0.859 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-bounce.js
2.598 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-bounce.min.js
0.968 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-clip.js
1.54 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-clip.min.js
0.777 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-drop.js
1.558 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-drop.min.js
0.735 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-explode.js
2.855 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-explode.min.js
1.096 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-fade.js
0.945 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-fade.min.js
0.513 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-fold.js
2.134 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-fold.min.js
0.996 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-highlight.js
1.214 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-highlight.min.js
0.633 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-puff.js
0.972 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-puff.min.js
0.498 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-pulsate.js
1.53 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-pulsate.min.js
0.672 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-scale.js
1.341 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-scale.min.js
0.706 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-shake.js
1.84 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-shake.min.js
0.826 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-size.js
5.291 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-size.min.js
2.433 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-slide.js
1.921 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-slide.min.js
0.896 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect-transfer.js
0.867 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect-transfer.min.js
0.432 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
effect.js
24.036 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
effect.min.js
10.09 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
menu.js
18.516 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
menu.min.js
9.96 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
mouse.js
6.081 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
mouse.min.js
3.348 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
progressbar.js
4.14 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
progressbar.min.js
2.498 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
resizable.js
29.775 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
resizable.min.js
18.383 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
selectable.js
7.938 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
selectable.min.js
4.4 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
selectmenu.js
15.963 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
selectmenu.min.js
9.279 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
slider.js
19.14 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
slider.min.js
10.507 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
sortable.js
46.524 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
sortable.min.js
24.906 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
spinner.js
14.096 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
spinner.min.js
7.496 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
tabs.js
23.109 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
tabs.min.js
11.727 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644
tooltip.js
14.137 KB
May 28 2024 01:14:16
giriqfky / giriqfky
0644
tooltip.min.js
6.098 KB
February 06 2025 22:27:26
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF