Make text-underneath-compose-box all nicely line up together.

(imported from commit d4676d95ccad18f65a29447647581b41d53dfa9a)
This commit is contained in:
Waseem Daher
2013-04-24 17:44:25 -04:00
parent 3bb3bbb1ee
commit ccc5363f3c
3 changed files with 12 additions and 11 deletions

View File

@@ -204,7 +204,7 @@ exports.start = function (msg_type, opts) {
}
if (message_snapshot !== undefined) {
$('#restore-draft').css('visibility', 'visible');
$('#restore-draft').show();
}
if (opts.replying_to_message !== undefined) {
@@ -266,7 +266,7 @@ exports.snapshot_message = function(message) {
};
function clear_message_snapshot() {
$("#restore-draft").css("visibility", "hidden");
$("#restore-draft").hide();
message_snapshot = undefined;
}