HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/dusk-to-dawn/inc/theme-options.js
var farbtastic;

(function($){
	var pickColor = function(a) {
		farbtastic.setColor(a);
		$( '#link-color' ).val(a);
		$( '#link-color-example' ).css( 'background-color', a);
	};

	$(document).ready( function() {
		$( '#default-color' ).wrapInner( '<a href="#" />' );

		farbtastic = $.farbtastic( '#colorPickerDiv', pickColor);

		pickColor( $( '#link-color' ).val() );

		$( '.pickcolor' ).click( function(e) {
			$( '#colorPickerDiv' ).show();
			e.preventDefault();
		});

		$( '#link-color' ).keyup( function() {
			var a = $( '#link-color' ).val(),
				b = a;

			a = a.replace(/[^a-fA-F0-9]/, '' );
			if ( '#' + a !== b )
				$( '#link-color' ).val(a);
			if ( a.length === 3 || a.length === 6 )
				pickColor( '#' + a );
		});

		$(document).mousedown( function() {
			$( '#colorPickerDiv' ).hide();
		});

		$( '#default-color a' ).click( function(e) {
			pickColor( '#' + this.innerHTML.replace(/[^a-fA-F0-9]/, '' ) );
			e.preventDefault();
		});

		$( '.image-radio-option.color-scheme input:radio' ).change( function() {
			var currentDefault = $( '#default-color a' ),
				newDefault = $(this).next().val();

			if ( $( '#link-color' ).val() == currentDefault.text() )
				pickColor( newDefault );

			currentDefault.text( newDefault );
		});
	});
})(jQuery);