12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
|
jQuery(function() {
|
||
|
jQuery('.media-item').each(function() {
|
||
|
var item = this;
|
||
|
jQuery('.savesend', item).each(function() {
|
||
|
|
||
|
});
|
||
|
jQuery('input[name*=comic_image_type]', item).bind('change', function() {
|
||
|
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|