git-svn-id: https://develop.svn.wordpress.org/trunk@12036 602fd350-edb4-49c9-b593-d223f7449a82
23 lines
614 B
JavaScript
23 lines
614 B
JavaScript
function WPSetThumbnailHTML(html){
|
|
jQuery('#postthumbnaildiv .inside').html(html);
|
|
}
|
|
|
|
function WPSetThumbnailID(id){
|
|
if ( jQuery('input[value=_thumbnail_id]').size() > 0 ) {
|
|
jQuery('#meta\\[' + jQuery('input[value=_thumbnail_id]').attr('id').match(/[0-9]+/) + '\\]\\[value\\]' ).text(id);
|
|
}
|
|
}
|
|
|
|
function WPRemoveThumbnail(){
|
|
jQuery.post(ajaxurl, {
|
|
action:"set-post-thumbnail", post_id: jQuery('#post_ID').val(), thumbnail_id: -1, cookie: encodeURIComponent(document.cookie)
|
|
}, function(str){
|
|
if ( str == '0' ) {
|
|
alert( setPostThumbnailL10n.error );
|
|
} else {
|
|
WPSetThumbnailHTML(str);
|
|
}
|
|
}
|
|
);
|
|
}
|