Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
kapee-extensions
/
inc
/
admin
/
meta-box
/
js
:
range.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
( function ( $, rwmb ) { 'use strict'; /** * Update text value. */ function update() { var $this = $( this ), $output = $this.siblings( '.rwmb-range-output' ); $this.on( 'input propertychange change', function () { $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 );