File "date.js"

Full Path: /home/refref/public_html/navigation/wordfence/framework/meta-box-library/js/date.js
File size: 555 bytes
MIME-type: text/plain
Charset: utf-8

/**
 * Update date picker element
 * Used for static & dynamic added elements (when clone)
 */
jQuery( document ).ready( function( $ )
{
	$( ':input.rwmb-date' ).each( rwmb_update_date_picker );
	$( '.rwmb-input' ).on( 'clone', ':input.rwmb-date', rwmb_update_date_picker );
	
	function rwmb_update_date_picker()
	{
		var $this = $( this ),
			options = $this.data( 'options' );
	
		$this.siblings( '.ui-datepicker-append' ).remove();         // Remove appended text
		$this.removeClass( 'hasDatepicker' ).attr( 'id', '' ).datepicker( options );
	}

} );