Current File : /home/mdkeenpw/www/wp-content/themes/cargo/js/bt_text.js |
(function($) {
'use strict';
$( document ).ready(function() {
$( 'body' ).on( 'keyup', '.bt_value', function() {
var value = $( this ).val();
var hidden_el = $( this ).parent().find( 'input[type="hidden"]' );
var key_el = $( this ).parent().find( 'select' );
if ( key_el.length == 0 ) {
key_el = $( this ).parent().find( '.bt_key' );
}
var key = key_el.val();
if ( key != '' && value != '' ) {
hidden_el.attr( 'value', key + ':' + value );
} else {
hidden_el.attr( 'value', '' );
}
});
$( 'body' ).on( 'keyup', '.bt_key', function() {
var key = $( this ).val();
var hidden_el = $( this ).parent().find( 'input[type="hidden"]' );
var val_el = $( this ).parent().find( '.bt_value' );
var value = val_el.val();
if ( key != '' && value != '' ) {
hidden_el.attr( 'value', key + ':' + value );
} else {
hidden_el.attr( 'value', '' );
}
});
$( 'body' ).on( 'change', '.bt_key_select', function() {
var hidden_el = $( this ).parent().find( 'input[type="hidden"]' );
var input_el = $( this ).parent().find( 'input[type="text"]' );
var val = input_el.val();
if ( $( this ).val() != '' && val != '' ) {
hidden_el.attr( 'value', $( this ).val() + ':' + val );
} else {
hidden_el.attr( 'value', '' );
}
});
toggle_remove_buttons();
function add_cloned_fields( $input ) {
var $clone_last = $input.find( '.rwmb-clone:last' ),
$clone = $clone_last.clone(),
$input, name;
$clone.insertAfter( $clone_last );
$input = $clone.find( ':input[class|="rwmb"]' );
var $input1 = $clone.find( ':input' ).val( '' );
name = $input.attr( 'name' ).replace( /\[(\d+)\]/, function( match, p1 ) {
return '[' + ( parseInt( p1 ) + 1 ) + ']';
});
$input.attr( 'name', name );
toggle_remove_buttons( $input );
$input.trigger( 'clone' );
}
$( '.add-clone' ).on( 'click', function( e ) {
e.preventDefault();
e.stopPropagation();
var $input = $( this ).closest( '.rwmb-input' ),
$clone_group = $( this ).closest( '.rwmb-field' ).attr( 'clone-group' );
if ( $clone_group ) {
var $metabox = $( this ).closest( '.inside' );
var $clone_group_list = $metabox.find( 'div[clone-group="' + $clone_group + '"]' );
$.each( $clone_group_list.find( '.rwmb-input' ),
function( key, value ) {
add_cloned_fields( $( value ) );
});
} else {
add_cloned_fields( $input );
}
toggle_remove_buttons( $input );
return false;
});
$( '.rwmb-input' ).on( 'click', '.remove-clone', function() {
var $this = $( this ),
$input = $this.closest( '.rwmb-input' ),
$clone_group = $( this ).closest( '.rwmb-field' ).attr( 'clone-group' );
if ( $input.find( '.rwmb-clone' ).length <= 1 ) {
return false;
}
if ( $clone_group ) {
var $metabox = $( this ).closest( '.inside' );
var $clone_group_list = $metabox.find( 'div[clone-group="' + $clone_group + '"]' );
var $index = $this.parent().index();
$.each( $clone_group_list.find( '.rwmb-input' ),
function( key, value ) {
$( value ).children( '.rwmb-clone' ).eq( $index ).remove();
toggle_remove_buttons( $( value ) );
}
);
} else {
$this.parent().remove();
toggle_remove_buttons( $input );
}
return false;
});
function toggle_remove_buttons( $el ) {
var $button;
if ( ! $el )
$el = $( '.rwmb-field' );
$el.each(function() {
$button = $( this ).find( '.remove-clone' );
$button.length < 2 ? $button.hide() : $button.show();
});
}
});
})(jQuery);