share dialog styling improvements

This commit is contained in:
Vinzenz
2016-06-04 01:13:46 +02:00
parent 6fa9b3c512
commit bc6235720b
3 changed files with 10 additions and 2 deletions

View File

@@ -434,7 +434,8 @@ View.prototype = {
shareOptions.show();
var modalNote = $('.note-active');
modalNote.outerHeight(modalNote.outerHeight(true) + shareOptions.outerHeight(true));
var startHeight = modalNote.outerHeight(true);
modalNote.outerHeight(startHeight + shareOptions.outerHeight(true));
sear.on('input', function() {
var val = $(this).val().toLowerCase().trim();
var lis = neg.children();
@@ -449,6 +450,7 @@ View.prototype = {
}
}
}
modalNote.outerHeight(startHeight + shareOptions.outerHeight(true));
});
});
});