1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-21 05:13:18 +00:00

Add basic icon to delete conversation

This commit is contained in:
Loic Blot
2015-06-23 17:58:44 +00:00
parent e183c9f478
commit a83c494d47
3 changed files with 23 additions and 1 deletions
+7
View File
@@ -99,6 +99,9 @@ var refreshConversation = function() {
}
setMessageCountInfo(jsondata);
if ($('#ocsms-conversation-removal').is(':hidden')) {
$('#ocsms-conversation-removal').show();
}
if ($('#app-content-header').is(':hidden')) {
$('#app-content-header').show();
@@ -234,6 +237,10 @@ function fetchConversation(phoneNumber) {
$('#app-content-header').show();
}
if ($('#ocsms-conversation-removal').is(':hidden')) {
$('#ocsms-conversation-removal').show();
}
$('#app-content-wrapper').html(conversationBuf);
$('#app-content').scrollTop(1E10);