Image Editor: fix JS prompt, add size to 'load_image_to_edit' filter, see #10528

git-svn-id: http://svn.automattic.com/wordpress/trunk@11967 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-09-24 08:47:33 +00:00
parent c664315b01
commit 33836d522b
3 changed files with 8 additions and 6 deletions

View File

@ -90,7 +90,7 @@ function wp_image_editor($post_id, $msg = false) {
</div>
<div class="imgedit-submit">
<input type="button" onclick="imageEdit.close(<?php echo "$post_id, '$nonce'"; ?>)" class="button" value="<?php echo esc_attr__( 'Cancel' ); ?>" />
<input type="button" onclick="imageEdit.close(<?php echo $post_id; ?>, 1)" class="button" value="<?php echo esc_attr__( 'Cancel' ); ?>" />
<input type="button" onclick="imageEdit.save(<?php echo "$post_id, '$nonce'"; ?>)" class="button-primary imgedit-submit-btn" value="<?php echo esc_attr__( 'Save' ); ?>" />
</div>
</td>
@ -232,7 +232,7 @@ function load_image_to_edit($post, $size = 'full') {
break;
}
if ( is_resource($image) ) {
$image = apply_filters('load_image_to_edit', $image, $post->ID);
$image = apply_filters('load_image_to_edit', $image, $post->ID, $size);
if ( function_exists('imagealphablending') && function_exists('imagesavealpha') ) {
imagealphablending($image, false);
imagesavealpha($image, true);

View File

@ -355,10 +355,12 @@ imageEdit = {
$('#imgedit-selection-' + postid).val( JSON.stringify(sel) );
},
close : function(postid) {
if ( this.notsaved(postid) )
close : function(postid, warn) {
warn = warn || false;
if ( warn && this.notsaved(postid) )
return false;
this.iasapi = {};
this.hold = {};
$('#image-editor-' + postid).fadeOut('fast', function() {

File diff suppressed because one or more lines are too long