| Server IP : 172.67.159.97 / Your IP : 216.73.217.154 Web Server : nginx/1.24.0 System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/rebeccaone.com/wp-content/plugins/envira-gallery/assets/js/ |
Upload File : |
jQuery(document).ready(function ($) {
// Image Size: Random
// conditional-fields doesn't support multiple conditions, so we manually show/hide
// the Random Image Sizes option depending on the Image Size value
$('select[name="_envira_gallery[image_size]"]').on('change', function () {
if ($(this).val() === 'envira_gallery_random') {
$('tr#envira-config-image-sizes-random-box').show();
} else {
$('tr#envira-config-image-sizes-random-box').hide();
}
});
// Run the above conditions on load.
$('select[name="_envira_gallery[image_size]"]').trigger('change');
$('#envira-gallery.postbox').on('dragstart', function (e) {
return false;
});
// Hide .envira-bulk-dropdown when clicking outside
$(document).on('click', function (event) {
const $dropdown = $('.envira-bulk-dropdown[open]');
if (
$dropdown.length &&
!$dropdown.is(event.target) &&
$dropdown.has(event.target).length === 0
) {
$dropdown.removeAttr('open');
}
});
});