mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
085c01ac7a
git-svn-id: http://svn.automattic.com/wordpress/trunk@12111 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
616 B
JavaScript
21 lines
616 B
JavaScript
function WPSetAsThumbnail(id){
|
|
var $link = jQuery('#media-item-' + id + ' a.wp-post-thumbnail');
|
|
|
|
$link.text( setPostThumbnailL10n.saving );
|
|
jQuery.post(ajaxurl, {
|
|
action:"set-post-thumbnail", post_id: post_id, thumbnail_id: id, cookie: encodeURIComponent(document.cookie)
|
|
}, function(str){
|
|
var win = window.dialogArguments || opener || parent || top;
|
|
$link.text( setPostThumbnailL10n.setThumbnail );
|
|
if ( str == '0' ) {
|
|
alert( setPostThumbnailL10n.error );
|
|
} else {
|
|
jQuery('a.wp-post-thumbnail').show();
|
|
$link.hide();
|
|
win.WPSetThumbnailID(id);
|
|
win.WPSetThumbnailHTML(str);
|
|
}
|
|
}
|
|
);
|
|
}
|