%PDF- %PDF-
| Direktori : /home2/vacivi36/www2]/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/ |
| Current File : //home2/vacivi36/www2]/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/date.js |
jQuery( function ( $ )
{
'use strict';
/**
* Update date picker element
* Used for static & dynamic added elements (when clone)
*/
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 );
}
$( ':input.rwmb-date' ).each( rwmb_update_date_picker );
$( '.rwmb-input' ).on( 'clone', ':input.rwmb-date', rwmb_update_date_picker );
} );