online users count issue-656 (#657)
* online users count issue-656 * change log entry added for issue 656
This commit is contained in:
parent
3ca6108083
commit
45a3e643a8
@ -1,7 +1,6 @@
|
|||||||
# 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 @@
|
|||||||
- 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)
|
||||||
|
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user