File: /var/www/lipovac/wp-content/plugins/meta-box/js/color.js
jQuery( function ( $ ) {
	'use strict';
	/**
	 * Update color picker element
	 * Used for static & dynamic added elements (when clone)
	 */
	function update() {
		var $this = $( this ),
			$container = $this.closest( '.wp-picker-container' ),
			data = $.extend(
				{
					change: function () {
						$( this ).trigger( 'color:change' );
					},
					clear: function () {
						$( this ).trigger( 'color:clear' );
					}
				},
				$this.data( 'options' )
			);
		// Clone doesn't have input for color picker, we have to add the input and remove the color picker container
		if ( $container.length > 0 ) {
			$this.insertBefore( $container );
			$container.remove();
		}
		// Show color picker
		$this.wpColorPicker( data );
	}
	$( '.rwmb-color' ).each( update );
	$( document ).on( 'clone', '.rwmb-color', update );
} );