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
a2ba3ccd
Commit
a2ba3ccd
authored
Aug 23, 2016
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed chat state value, should be `chat` not `chatty`.
parent
c6d37b57
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
docs/CHANGES.md
docs/CHANGES.md
+2
-0
src/converse-rosterview.js
src/converse-rosterview.js
+1
-1
src/templates/roster.html
src/templates/roster.html
+2
-2
No files found.
docs/CHANGES.md
View file @
a2ba3ccd
...
...
@@ -5,6 +5,8 @@
-
Update the 'rooms' API to allow user to pass in room attributes. [jcbrand]
-
Add new configuration setting
[
message_storage
](
https://conversejs.org/docs/html/configuration.html#message_storage
)
[
jcbrand
]
-
Hardcode the storage for roster contacts and chatroom occupants to
`sessionStorage`
. [jcbrand]
-
Fixed wrong chat state value, should be
`chat`
, not
`chatty`
.
See
[
RFC 3921
](
https://xmpp.org/rfcs/rfc3921.html#rfc.section.2.1.2.2
)
. [jcbrand]
## 1.0.6 (2016-08-12)
-
#632 Offline and Logout states do not properly update once users start
...
...
src/converse-rosterview.js
View file @
a2ba3ccd
...
...
@@ -126,7 +126,7 @@
label_state
:
__
(
'
State
'
),
label_any
:
__
(
'
Any
'
),
label_online
:
__
(
'
Online
'
),
label_chatty
:
__
(
'
Chat
ty
'
),
label_chatty
:
__
(
'
Chat
'
),
label_busy
:
__
(
'
Busy
'
),
label_away
:
__
(
'
Away
'
),
label_xa
:
__
(
'
Extended Away
'
),
...
...
src/templates/roster.html
View file @
a2ba3ccd
...
...
@@ -6,8 +6,8 @@
<option
value=
""
>
{{label_any}}
</option>
<option
{[
if
(chat_state =
==
'
online
')
{
]}
selected=
"selected"
{[
}
]}
value=
"online"
>
{{label_online}}
</option>
<option
{[
if
(chat_state =
==
'
chat
ty
')
{
]}
selected=
"selected"
{[
}
]}
value=
"chat
ty
"
>
{{label_chatty}}
</option>
<option
{[
if
(chat_state =
==
'
chat
')
{
]}
selected=
"selected"
{[
}
]}
value=
"chat"
>
{{label_chatty}}
</option>
<option
{[
if
(chat_state =
==
'
dnd
')
{
]}
selected=
"selected"
{[
}
]}
value=
"dnd"
>
{{label_busy}}
</option>
<option
{[
if
(chat_state =
==
'
away
')
{
]}
selected=
"selected"
{[
}
]}
...
...
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