%PDF- %PDF-
| Direktori : /home/vacivi36/public_bakcup/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/ |
| Current File : /home/vacivi36/public_bakcup/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/oembed.js |
jQuery( function( $ )
{
'use strict';
$( '.rwmb-oembed-wrapper .spinner' ).hide();
$( 'body' ).on( 'click', '.rwmb-oembed-wrapper .show-embed', function() {
var $this = $( this ),
$spinner = $this.siblings( '.spinner' ),
data = {
action: 'rwmb_get_embed',
url: $this.siblings( 'input' ).val()
};
$spinner.show();
$.post( ajaxurl, data, function( r )
{
$spinner.hide();
$this.siblings( '.embed-code' ).html( r.data );
}, 'json' );
return false;
} );
} );