Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
3a30f30f
Commit
3a30f30f
authored
Sep 15, 2014
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix concerning trimmed chats.
Chats were being trimmed even though there was enough room.
parent
bab04a4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
converse.js
converse.js
+1
-1
docs/CHANGES.rst
docs/CHANGES.rst
+1
-0
No files found.
converse.js
View file @
3a30f30f
...
...
@@ -2918,7 +2918,7 @@
_
.
each
(
this
.
getAll
(),
function
(
view
)
{
var
id
=
view
.
model
.
get
(
'
id
'
);
if
((
id
!==
'
controlbox
'
)
&&
(
id
!==
new_id
)
&&
(
!
view
.
model
.
get
(
'
minimized
'
)))
{
if
((
id
!==
'
controlbox
'
)
&&
(
id
!==
new_id
)
&&
(
!
view
.
model
.
get
(
'
minimized
'
))
&&
view
.
$el
.
is
(
'
:visible
'
)
)
{
boxes_width
+=
view
.
$el
.
outerWidth
(
true
);
}
});
...
...
docs/CHANGES.rst
View file @
3a30f30f
...
...
@@ -13,6 +13,7 @@ Changelog
* Converse.js now responds to XEP-0030: Service Discovery requests. [jcbrand]
* Bugfix. Roster groups all appear offline after page reload (with prebind).
See http://librelist.com/browser//conversejs/2014/8/26/problem-with-contact-list-everyone-is-offline/ [heban and jcbrand]
* Bugfix concerning trimmed chats. Chats were being trimmed even though there was enough room. [jcbrand]
* #62 Sound notifications will now also play when you are mentioned in a chat room. [jcbrand]
* #212 Bugfix. Groups weren't being show again after the live filter was cleared. [jcbrand]
* #215 (and also #75) XEP-0249: Direct MUC Invitations. [jcbrand]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment