%PDF- %PDF-
Direktori : /var/www/pn/beta/64801_wp-content/plugins/meta-box/js/ |
Current File : /var/www/pn/beta/64801_wp-content/plugins/meta-box/js/oembed.js |
jQuery( function ( $ ) { 'use strict'; /** * Show preview of oembeded media. */ function showPreview( e ) { e.preventDefault(); var $this = $( this ), $spinner = $this.siblings( '.spinner' ), data = { action: 'rwmb_get_embed', url: $this.val() }; $spinner.css( 'visibility', 'visible' ); $.post( ajaxurl, data, function ( response ) { $spinner.css( 'visibility', 'hidden' ); $this.siblings( '.rwmb-embed-media' ).html( response.data ); }, 'json' ); } /** * Remove oembed preview when cloning. */ function removePreview() { $( this ).siblings( '.rwmb-embed-media' ).html( '' ); } $( document ) .on( 'change', '.rwmb-oembed', _.debounce( showPreview, 250 ) ) .on( 'clone', '.rwmb-oembed', removePreview ); } );