| Server IP : 68.178.247.200 / Your IP : 216.73.216.110 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/youtube-showcase/assets/ext/emd-meta-box/js/ |
Upload File : |
jQuery( function( $ )
{
// Hide "Uploaded files" title if there are no files uploaded after deleting files
$( '.emd-mb-images' ).on( 'click', '.emd-mb-delete-file', function()
{
// Check if we need to show drop target
var $dragndrop = $( this ).parents( '.emd-mb-images' ).siblings( '.emd-mb-drag-drop' );
// After delete files, show the Drag & Drop section
$dragndrop.removeClass('hidden');
} );
$( '.emd-mb-drag-drop' ).each(function()
{
// Declare vars
var $dropArea = $( this ),
$imageList = $dropArea.siblings( '.emd-mb-uploaded' ),
uploaderData = $dropArea.data( 'js_options' ),
uploader = {};
// Extend uploaderData
uploaderData.multipart_params = $.extend(
{
_ajax_nonce : $dropArea.data( 'upload_nonce' ),
post_id : $( '#post_ID' ).val()
},
uploaderData.multipart_params
);
// Create uploader
uploader = new plupload.Uploader( uploaderData );
uploader.init();
// Add files
uploader.bind( 'FilesAdded', function( up, files )
{
var maxFileUploads = $imageList.data( 'max_file_uploads' ),
uploaded = $imageList.children().length,
msg = maxFileUploads > 1 ? emdmbFile.maxFileUploadsPlural : emdmbFile.maxFileUploadsSingle;
msg = msg.replace( '%d', maxFileUploads );
// Remove files from queue if exceed max file uploads
if ( maxFileUploads > 0 && ( uploaded + files.length ) > maxFileUploads )
{
if ( uploaded < maxFileUploads )
{
var diff = maxFileUploads - uploaded;
up.splice( diff - 1, files.length - diff );
files = up.files;
}
alert( msg );
}
// Hide drag & drop section if reach max file uploads
if ( maxFileUploads > 0 && uploaded + files.length >= maxFileUploads )
$dropArea.addClass( 'hidden' );
max = parseInt( up.settings.max_file_size, 10 );
// Upload files
plupload.each( files, function( file )
{
addLoading( up, file, $imageList );
addThrobber( file );
if ( file.size >= max )
removeError( file );
} );
up.refresh();
up.start();
} );
uploader.bind( 'Error', function( up, e )
{
addLoading( up, e.file, $imageList );
removeError( e.file );
up.removeFile( e.file );
} );
uploader.bind( 'FileUploaded', function( up, file, r )
{
r = $.parseJSON( r.response );
r.success ? $( 'li#' + file.id ).replaceWith( r.data ) : removeError( file );
} );
});
/**
* Helper functions
*/
/**
* Removes li element if there is an error with the file
*
* @return void
*/
function removeError( file )
{
$( 'li#' + file.id )
.addClass( 'emd-mb-image-error' )
.delay( 1600 )
.fadeOut( 'slow', function()
{
$( this ).remove();
}
);
}
/**
* Adds loading li element
*
* @return void
*/
function addLoading( up, file, $ul )
{
$ul.removeClass('hidden').append( "<li id='" + file.id + "'><div class='emd-mb-image-uploading-bar'></div><div id='" + file.id + "-throbber' class='emd-mb-image-uploading-status'></div></li>" );
}
/**
* Adds loading throbber while waiting for a response
*
* @return void
*/
function addThrobber( file )
{
$( '#' + file.id + '-throbber' ).html( "<img class='emd-mb-loader' height='64' width='64' src='" + EMDMB.url + "img/loader.gif'/>" );
}
} );