put call to top and left in callback to resize

This commit is contained in:
Sanj 2012-03-06 17:54:25 +05:30
parent a83bf0d3ef
commit d44309cd50

View File

@ -833,8 +833,8 @@ ImageBox.prototype.addEventHandlers = function() {
var left = parseInt($(this).position().left).toString(); var left = parseInt($(this).position().left).toString();
var height = $(this).height().toString(); var height = $(this).height().toString();
var width = $(this).width().toString(); var width = $(this).width().toString();
that.resize({'height': height, 'width': width}); that.resize({'height': height, 'width': width, 'top': top, 'left': left});
that.setCSS({'top': top, 'left': left}); //that.setCSS({'top': top, 'left': left});
} }
}); });
} }
@ -886,6 +886,7 @@ ImageBox.prototype.resize = function(dimensions) {
if (response.status == 1) { if (response.status == 1) {
var path = $.trim(response.path); var path = $.trim(response.path);
that.jq.find('.edgeImage').attr("src", path); that.jq.find('.edgeImage').attr("src", path);
that.setCSS({'top': top, 'left': left});
// REVISION_NO = response.rev_id; // REVISION_NO = response.rev_id;
return true; return true;
} else { } else {