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
a1c15645
Commit
a1c15645
authored
Feb 17, 2017
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make `keepalive` and `roster_groups` true by default.
parent
ef7a0df4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
docs/CHANGES.md
docs/CHANGES.md
+1
-0
docs/source/quickstart.rst
docs/source/quickstart.rst
+1
-0
index.html
index.html
+0
-1
src/converse-core.js
src/converse-core.js
+2
-2
No files found.
docs/CHANGES.md
View file @
a1c15645
...
...
@@ -12,6 +12,7 @@
*
To prevent confusion the private, closured object, only
available to plugins, has been renamed from
`converse`
to
`_converse`
.
The public API is accessible via a global
`converse`
object.
*
The
`keepalive`
and
`roster_groups`
options are now set to
`true`
by default.
-
Created a new non-core plugin
`converse-muc-embedded`
which embeds a single
chat room into a page. An example can be found at https://conversejs.org/demo/embedded.html
...
...
docs/source/quickstart.rst
View file @
a1c15645
...
...
@@ -48,6 +48,7 @@ bottom of your page (after the closing *</body>* element):
converse.initialize({
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
show_controlbox_by_default: true,
play_sounds: true,
});
});
</script>
...
...
index.html
View file @
a1c15645
...
...
@@ -241,7 +241,6 @@
converse
.
initialize
({
// Please use this connection manager only for testing purposes
bosh_service_url
:
'
https://conversejs.org/http-bind/
'
,
keepalive
:
true
,
message_carbons
:
true
,
play_sounds
:
true
,
roster_groups
:
true
,
...
...
src/converse-core.js
View file @
a1c15645
...
...
@@ -240,14 +240,14 @@
hide_offline_users
:
false
,
include_offline_state
:
false
,
jid
:
undefined
,
keepalive
:
fals
e
,
keepalive
:
tru
e
,
locked_domain
:
undefined
,
message_carbons
:
false
,
message_storage
:
'
session
'
,
password
:
undefined
,
prebind_url
:
null
,
rid
:
undefined
,
roster_groups
:
fals
e
,
roster_groups
:
tru
e
,
show_only_online_users
:
false
,
sid
:
undefined
,
storage
:
'
session
'
,
...
...
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