Current File : /home/kelaby89/kayautoparts.com/wp-content/plugins/meta-box/js/range.js |
( function ( $, rwmb ) {
'use strict';
/**
* Update text value.
*/
function update() {
const $this = $( this ),
$output = $this.siblings( '.rwmb-range-output' );
$output.html( $this.val() );
$this.on( 'input propertychange change', () => $output.html( $this.val() ) );
}
function init( e ) {
$( e.target ).find( '.rwmb-range' ).each( update );
}
rwmb.$document
.on( 'mb_ready', init )
.on( 'clone', '.rwmb-range', update );
} )( jQuery, rwmb );