Spamworldpro Mini Shell
Spamworldpro


Server : Apache/2.4.52 (Ubuntu)
System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
User : www-data ( 33)
PHP Version : 8.1.2-1ubuntu2.21
Disable Function : NONE
Directory :  /var/www/theprintave/wp-content/plugins/haru-pricom/includes/term-meta/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/theprintave/wp-content/plugins/haru-pricom/includes/term-meta/js/term-meta.js
!function($){
	$(document).ready(function() {
		// Color picker
		if ( $('input.harucolorpicker').length > 0 ) {
			$('input.harucolorpicker').wpColorPicker();
		}

		// Dual Color
		if ( $('#product_attribute_color_dual').length > 0 ) {
			var color_dual_default = $('#product_attribute_color_dual').val();

			if ( color_dual_default == '0' ) {
				$('.product_attribute_color_2').hide()
			}

			$('#product_attribute_color_dual').on('change', function() {
		        if ($(this).val() == 1)
		            $('.product_attribute_color_2').show()
		        else
		            $('.product_attribute_color_2').hide()
	        });
		}

		// Uploading files
	    $(document).off('click', 'button.haru_upload_image_button');
	    $(document).on('click', 'button.haru_upload_image_button', function (event) {

	        event.preventDefault();
	        event.stopPropagation();
	        var $this = $(this);
	        var haru_file_frame;

	        if (typeof wp !== 'undefined' && wp.media && wp.media.editor) {

	            // If the media frame already exists, reopen it.
	            if (haru_file_frame) {
	                haru_file_frame.open();
	                return;
	            }

	            // Create the media frame.
	            haru_file_frame = wp.media.frames.select_image = wp.media({
	                title    : 'Choose',
	                button   : {
	                    text : 'Use this'
	                },
	                multiple : false,
	            });

	            // When an image is selected, run a callback.
	            haru_file_frame.on('select', function () {
	                var attachment = haru_file_frame.state().get('selection').first().toJSON();

	                if ($.trim(attachment.id) !== '') {
	                    $this.prev().val(attachment.id);
	                    var url = ( typeof(attachment.sizes.thumbnail) == 'undefined' ) ? attachment.sizes.full.url : attachment.sizes.thumbnail.url;
	                    $this.closest('.meta-image-field-wrapper').find('img').attr('src', url);
	                    $this.next().show();
	                }
	                //file_frame.close();
	            });

	            // When open select selected
	            haru_file_frame.on('open', function () {

	                // Grab our attachment selection and construct a JSON representation of the model.
	                var selection = haru_file_frame.state().get('selection');
	                var current = $this.prev().val();
	                var attachment = wp.media.attachment(current);
	                attachment.fetch();
	                selection.add(attachment ? [attachment] : []);
	            });

	            // Finally, open the modal.
	            haru_file_frame.open();
	        }
	    });

	    $(document).on('click', 'button.haru_remove_image_button', function () {

	        var $this = $(this);

	        var placeholder = $this.closest('.meta-image-field-wrapper').find('img').data('placeholder');
	        $this.closest('.meta-image-field-wrapper').find('img').attr('src', placeholder);
	        $this.prev().prev().val('');
	        $this.hide();
	        return false;
	    });

	});
}(jQuery);

Spamworldpro Mini