PATH:
home
/
centosnipponia
/
public_html
/
BAK_tradeandtraffic
/
wp-content
/
plugins
/
tz-feature-pack
/
public
/
js
(function($){ var taxonomyTermImageText = TaxonomyTermImageText || {}; var taxonomyTermImage = { // modal frame file_frame: null, // modal settings settings: { title: taxonomyTermImageText.modalTitle || 'Select or upload a video', button: { text: taxonomyTermImageText.modalButton || 'Attach' }, multiple: false, // Set to true to allow multiple files to be selected library: { type: 'image' } }, /** * Initialize script */ init: function(){ var _this = this; // delegate our click handler so that the image itself is clickable. because that's cool $('body').on('click', '.taxonomy-term-image-attach', function ( event ) { event.preventDefault(); _this.openModal(); }); // remove button $('.taxonomy-term-image-remove').click( _this.removeImage ); }, /** * Remove the current image by emptying the container and field */ removeImage: function(){ $('#taxonomy-term-image-container').html(''); $('#taxonomy-term-image-id').val(''); }, /** * Open the media modal window * - http://mikejolley.com/2012/12/using-the-new-wordpress-3-5-media-uploader-in-plugins/ * - https://gist.github.com/pippinsplugins/29bebb740e09e395dc06 */ openModal: function(){ var _this = this; // If the media frame already exists, reopen it. if ( _this.file_frame ) { _this.file_frame.open(); return; } // Create the media frame. _this.file_frame = wp.media.frames.file_frame = wp.media( _this.settings ); // When an image is selected, run a callback. _this.file_frame.on( 'select', function() { _this.file_frame.state() .get('selection') // handle each attachment .map( _this.updateImage); }); // Finally, open the modal _this.file_frame.open(); }, /** * Handle a single selected image attachment * * @param attachment */ updateImage: function( attachment ){ // the selected image var image = attachment.toJSON(); // get image sizes data var sizes = attachment.get('sizes'); var size = ( typeof sizes.thumbnail === 'undefined' ) ? sizes.full : sizes.thumbnail; //image.id $('#taxonomy-term-image-id').val( image.id ); //sizes.thumbnail.url $('#taxonomy-term-image-container').html("<img class='taxonomy-term-image-attach' src='" + size.url + "' />"); } }; $(document).ready(function(){ taxonomyTermImage.init(); }); })(jQuery);
[+]
..
[-] elementor-helper.js
[edit]
[-] post-share.js
[edit]
[-] owl-carousel.js
[edit]
[-] cart-helper.js
[edit]
[-] tz-feature-pack-public.js
[edit]
[-] bootstrap.js
[edit]
[-] ajax-auth.js
[edit]
[-] search-helper.js
[edit]
[-] post-like.js
[edit]
[-] countdown.js
[edit]
[-] custom-scrollbar.js
[edit]
[-] taxonomy-term-image.js
[edit]
[-] .htaccess.disabled
[edit]