Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
post-date
/
wp-content
/
plugins
/
meta-box
/
js
:
oembed.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
( function ( $, _, rwmb ) { '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.value, _ajax_nonce: rwmbOembed.nonce, not_available: $this.data( 'not-available' ), }; $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( '' ); } rwmb.$document .on( 'change', '.rwmb-oembed', _.debounce( showPreview, 250 ) ) .on( 'clone', '.rwmb-oembed', removePreview ); } )( jQuery, _, rwmb );