Current File : /home/virtualki/22346/oldwp/wp-content/themes/megiw/js/edit-sauna-taxonomy.js |
jQuery(document).ready(function($){
$('.wi_taxonomy_meta_sauna_category_detail_color').wpColorPicker({
palettes: ['#d9a218','#d98818','#d1670a','#fae158','#c1cf71','#bd3e3e','#927aa6','#2e556e']
});
var taxonomy_image_frame = wp.media({
title: "Wybierz ikonę",
button: {
text: "Wybierz ikonę"
},
multiple: false
});
$('#wi_taxonomy_meta_sauna_shape_choose_image').click(function(){
taxonomy_image_frame.open();
return false;
});
var shape_preview = $('#wi_taxonomy_meta_sauna_shape_image_preview');
taxonomy_image_frame.on('select', function() {
taxonomy_image_frame.state().get('selection').each(function(obj){
var attachment = obj.toJSON();
shape_preview.empty();
shape_preview.html('<img src="'+attachment.url+'" alt="" />');
$('#wi_taxonomy_meta_sauna_shape_image').val(attachment.id);
});
});
$('#submit').mousedown( function() {
tinyMCE.triggerSave();
});
});