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
45a3e643
Commit
45a3e643
authored
Jun 10, 2016
by
amanzur
Committed by
JC Brand
Jun 10, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
online users count issue-656 (#657)
* online users count issue-656 * change log entry added for issue 656
parent
3ca61080
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
docs/CHANGES.md
docs/CHANGES.md
+2
-1
src/converse-controlbox.js
src/converse-controlbox.js
+1
-0
No files found.
docs/CHANGES.md
View file @
45a3e643
# Changelog
# Changelog
## 1.0.3 (Unreleased)
## 1.0.3 (Unreleased)
-
Bugfix. Login form doesn't render after logging out, when
`auto_reconnect = false`
[jcbrand]
-
Bugfix. Login form doesn't render after logging out, when
`auto_reconnect = false`
[jcbrand]
-
Also indicate new day for the first day's messages. [jcbrand]
-
Also indicate new day for the first day's messages. [jcbrand]
-
Chat bot messages don't appear when they have the same ids as their commands. [jcbrand]
-
Chat bot messages don't appear when they have the same ids as their commands. [jcbrand]
...
@@ -13,6 +12,8 @@
...
@@ -13,6 +12,8 @@
-
New API method
`converse.rooms.close()`
-
New API method
`converse.rooms.close()`
-
#553 Add processing hints to OTR messages [jcbrand]
-
#553 Add processing hints to OTR messages [jcbrand]
-
#650 Don't ignore incoming messages with same JID as current user (might be MAM archived) [jcbrand]
-
#650 Don't ignore incoming messages with same JID as current user (might be MAM archived) [jcbrand]
-
#656 online users count in minimized chat window on initialization corrected
## 1.0.2 (2016-05-24)
## 1.0.2 (2016-05-24)
...
...
src/converse-controlbox.js
View file @
45a3e643
...
@@ -668,6 +668,7 @@
...
@@ -668,6 +668,7 @@
initialize
:
function
()
{
initialize
:
function
()
{
this
.
render
();
this
.
render
();
this
.
updateOnlineCount
();
converse
.
on
(
'
initialized
'
,
function
()
{
converse
.
on
(
'
initialized
'
,
function
()
{
converse
.
roster
.
on
(
"
add
"
,
this
.
updateOnlineCount
,
this
);
converse
.
roster
.
on
(
"
add
"
,
this
.
updateOnlineCount
,
this
);
converse
.
roster
.
on
(
'
change
'
,
this
.
updateOnlineCount
,
this
);
converse
.
roster
.
on
(
'
change
'
,
this
.
updateOnlineCount
,
this
);
...
...
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