Skip to content

Commit 50b77e8

Browse files
committed
Fixes #1733
1 parent c8b7e8a commit 50b77e8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- #129: Add support for XEP-0156: Disovering Alternative XMPP Connection Methods. Only XML is supported for now.
66
- #1691 Fix `collection.chatbox is undefined` errors
7+
- #1733 New message notifications for a minimized chat stack on top of each other
78
- Prevent editing of sent file uploads.
89

910
### Breaking changes

sass/_minimized_chats.scss

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
text-overflow: ellipsis;
2828
display: block;
2929
height: 45px;
30+
width: 9em;
3031
}
3132

3233
a.restore-chat {
@@ -59,6 +60,7 @@
5960
margin-bottom: 0.2em;
6061
box-shadow: 1px 3px 5px 3px rgba(0, 0, 0, 0.4);
6162
width: 100%;
63+
max-width: 9em;
6264
}
6365
&.minimized {
6466
height: auto;

src/converse-minimize.js

-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,6 @@ converse.plugins.add('converse-minimize', {
397397
'title': this.model.getDisplayName()
398398
});
399399
this.el.innerHTML = tpl_trimmed_chat(data);
400-
this.setElement(this.el.firstElementChild);
401400
return this.el;
402401
},
403402

0 commit comments

Comments
 (0)