fixed drop area top

This commit is contained in:
Baris Soner Usakli
2014-01-19 22:06:25 -05:00
parent d1ccc692ae
commit 050ab738e4

View File

@@ -456,6 +456,7 @@ define(['taskbar'], function(taskbar) {
if(window.FileReader) {
var postContainer = $('#cmp-uuid-' + post_uuid),
drop = postContainer.find('.imagedrop'),
tabContent = postContainer.find('.tab-content'),
textarea = postContainer.find('textarea');
$(document).off('dragstart').on('dragstart', function(e) {
@@ -468,7 +469,7 @@ define(['taskbar'], function(taskbar) {
if(draggingDocument) {
return;
}
drop.css('top', textarea.position().top + 'px');
drop.css('top', tabContent.position().top + 'px');
drop.css('height', textarea.height());
drop.css('line-height', textarea.height() + 'px');
drop.show();