/home/altere25/highwoodoutdoorpool.com/wp-admin/js
NameSizeModeActions
widgets/-0755rm
accordion.js29560644editdlrm
accordion.min.js8650644editdlrm
code-editor.js115880644editdlrm
code-editor.min.js30840644editdlrm
color-picker.js98000644editdlrm
color-picker.min.js35210644editdlrm
comment.js27930644editdlrm
comment.min.js12650644editdlrm
common.js436640644editdlrm
common.min.js157680644editdlrm
custom-background.js34190644editdlrm
custom-background.min.js11970644editdlrm
custom-header.js20170644editdlrm
customize-controls.js2911070644editdlrm
customize-controls.min.js1107830644editdlrm
customize-nav-menus.js1085900644editdlrm
customize-nav-menus.min.js456360644editdlrm
customize-widgets.js715900644editdlrm
customize-widgets.min.js280100644editdlrm
dashboard.js188470644editdlrm
dashboard.min.js66500644editdlrm
edit-comments.js370250644editdlrm
edit-comments.min.js151700644editdlrm
editor-expand.js426070644editdlrm
editor-expand.min.js134510644editdlrm
editor.js453340644editdlrm
editor.min.js132270644editdlrm
farbtastic.js76890644editdlrm
gallery.js56420644editdlrm
gallery.min.js38360644editdlrm
image-edit.js294690644editdlrm
image-edit.min.js101780644editdlrm
inline-edit-post.js162720644editdlrm
inline-edit-post.min.js72850644editdlrm
inline-edit-tax.js76970644editdlrm
inline-edit-tax.min.js29060644editdlrm
iris.min.js236430644editdlrm
language-chooser.js8730644editdlrm
language-chooser.min.js4090644editdlrm
link.js38750644editdlrm
link.min.js16700644editdlrm
media-gallery.js13050644editdlrm
media-gallery.min.js6130644editdlrm
media-upload.js34580644editdlrm
media-upload.min.js11470644editdlrm
media.js52210644editdlrm
media.min.js19020644editdlrm
nav-menu.js440600644editdlrm
nav-menu.min.js216420644editdlrm
password-strength-meter.js31710644editdlrm
password-strength-meter.min.js7660644editdlrm
plugin-install.js70230644editdlrm
plugin-install.min.js23880644editdlrm
post.js374200644editdlrm
post.min.js180620644editdlrm
postbox.js118110644editdlrm
postbox.min.js41790644editdlrm
privacy-tools.js90570644editdlrm
privacy-tools.min.js40080644editdlrm
revisions.js339200644editdlrm
revisions.min.js178750644editdlrm
set-post-thumbnail.js8410644editdlrm
set-post-thumbnail.min.js5680644editdlrm
site-health.js90450644editdlrm
site-health.min.js50330644editdlrm
svg-painter.js55320644editdlrm
svg-painter.min.js23720644editdlrm
tags-box.js110760644editdlrm
tags-box.min.js30600644editdlrm
tags-suggest.js54540644editdlrm
tags-suggest.min.js22290644editdlrm
tags.js46830644editdlrm
tags.min.js18170644editdlrm
theme-plugin-editor.js246690644editdlrm
theme-plugin-editor.min.js112360644editdlrm
theme.js547390644editdlrm
theme.min.js265080644editdlrm
updates.js805690644editdlrm
updates.min.js356600644editdlrm
user-profile.js110430644editdlrm
user-profile.min.js55760644editdlrm
user-suggest.js23170644editdlrm
user-suggest.min.js6920644editdlrm
widgets.js228670644editdlrm
widgets.min.js124170644editdlrm
word-count.js76960644editdlrm
word-count.min.js15350644editdlrm
xfn.js7590644editdlrm
xfn.min.js4760644editdlrm
Edit: /home/altere25/highwoodoutdoorpool.com/wp-admin/js/color-picker.js (9800B)
/** * @output wp-admin/js/color-picker.js */ /* global wpColorPickerL10n */ ( function( $, undef ) { var ColorPicker, _before = '', _after = '
', _wrap = '
', _button = '', _wrappingLabel = '', _wrappingLabelText = ''; /** * Creates a jQuery UI color picker that is used in the theme customizer. * * @class $.widget.wp.wpColorPicker * * @since 3.5.0 */ ColorPicker = /** @lends $.widget.wp.wpColorPicker.prototype */{ options: { defaultColor: false, change: false, clear: false, hide: true, palettes: true, width: 255, mode: 'hsv', type: 'full', slider: 'horizontal' }, /** * Creates a color picker that only allows you to adjust the hue. * * @since 3.5.0 * @access private * * @return {void} */ _createHueOnly: function() { var self = this, el = self.element, color; el.hide(); // Set the saturation to the maximum level. color = 'hsl(' + el.val() + ', 100, 50)'; // Create an instance of the color picker, using the hsl mode. el.iris( { mode: 'hsl', type: 'hue', hide: false, color: color, /** * Handles the onChange event if one has been defined in the options. * * @ignore * * @param {Event} event The event that's being called. * @param {HTMLElement} ui The HTMLElement containing the color picker. * * @return {void} */ change: function( event, ui ) { if ( $.isFunction( self.options.change ) ) { self.options.change.call( this, event, ui ); } }, width: self.options.width, slider: self.options.slider } ); }, /** * Creates the color picker, sets default values, css classes and wraps it all in HTML. * * @since 3.5.0 * @access private * * @return {void} */ _create: function() { // Return early if Iris support is missing. if ( ! $.support.iris ) { return; } var self = this, el = self.element; // Override default options with options bound to the element. $.extend( self.options, el.data() ); // Create a color picker which only allows adjustments to the hue. if ( self.options.type === 'hue' ) { return self._createHueOnly(); } // Bind the close event. self.close = $.proxy( self.close, self ); self.initialValue = el.val(); // Add a CSS class to the input field. el.addClass( 'wp-color-picker' ); /* * Check if there's already a wrapping label, e.g. in the Customizer. * If there's no label, add a default one to match the Customizer template. */ if ( ! el.parent( 'label' ).length ) { // Wrap the input field in the default label. el.wrap( _wrappingLabel ); // Insert the default label text. self.wrappingLabelText = $( _wrappingLabelText ) .insertBefore( el ) .text( wpColorPickerL10n.defaultLabel ); } /* * At this point, either it's the standalone version or the Customizer * one, we have a wrapping label to use as hook in the DOM, let's store it. */ self.wrappingLabel = el.parent(); // Wrap the label in the main wrapper. self.wrappingLabel.wrap( _wrap ); // Store a reference to the main wrapper. self.wrap = self.wrappingLabel.parent(); // Set up the toggle button and insert it before the wrapping label. self.toggler = $( _before ) .insertBefore( self.wrappingLabel ) .css( { backgroundColor: self.initialValue } ); // Set the toggle button span element text. self.toggler.find( '.wp-color-result-text' ).text( wpColorPickerL10n.pick ); // Set up the Iris container and insert it after the wrapping label. self.pickerContainer = $( _after ).insertAfter( self.wrappingLabel ); // Store a reference to the Clear/Default button. self.button = $( _button ); // Set up the Clear/Default button. if ( self.options.defaultColor ) { self.button .addClass( 'wp-picker-default' ) .val( wpColorPickerL10n.defaultString ) .attr( 'aria-label', wpColorPickerL10n.defaultAriaLabel ); } else { self.button .addClass( 'wp-picker-clear' ) .val( wpColorPickerL10n.clear ) .attr( 'aria-label', wpColorPickerL10n.clearAriaLabel ); } // Wrap the wrapping label in its wrapper and append the Clear/Default button. self.wrappingLabel .wrap( '