| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/glaza-core/lib/meta-box/js/ |
Upload File : |
jQuery( function ( $ ) {
'use strict';
var frame,
$doc = $( document );
$doc.on( 'click', '.rwmb-file-input-select', function ( e ) {
e.preventDefault();
var $el = $( this );
// Create a frame only if needed
if ( ! frame ) {
frame = wp.media( {
className: 'media-frame rwmb-file-frame',
multiple: false,
title: rwmbFileInput.frameTitle
} );
}
// Open media uploader
frame.open();
// Remove all attached 'select' event
frame.off( 'select' );
// Handle selection
frame.on( 'select', function () {
var url = frame.state().get( 'selection' ).first().toJSON().url;
$el.siblings( 'input' ).val( url ).siblings( 'a' ).removeClass( 'hidden' );
} );
} );
// Clear selected images
$doc.on( 'click', '.rwmb-file-input-remove', function ( e ) {
e.preventDefault();
$( this ).addClass( 'hidden' ).siblings( 'input' ).val( '' );
} );
// Hide the Remove button when cloning
$doc.on( 'clone', '.rwmb-file_input', function () {
$( this ).siblings( '.rwmb-file-input-remove' ).addClass( 'hidden' );
} );
} );