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
21d96556
Commit
21d96556
authored
Sep 21, 2014
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix markup syntax err and enable minified js
parent
b241f8c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
20 deletions
+25
-20
index.html
index.html
+25
-20
No files found.
index.html
View file @
21d96556
...
@@ -8,12 +8,19 @@
...
@@ -8,12 +8,19 @@
<meta
name=
"description"
content=
"Converse.js: A free chat client for your website"
/>
<meta
name=
"description"
content=
"Converse.js: A free chat client for your website"
/>
<meta
name=
"author"
content=
"JC Brand"
/>
<meta
name=
"author"
content=
"JC Brand"
/>
<meta
name=
"keywords"
content=
"xmpp chat webchat converse.js"
/>
<meta
name=
"keywords"
content=
"xmpp chat webchat converse.js"
/>
<link
rel=
"shortcut icon"
type=
"image/ico"
href=
"css/images/favicon.ico"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"components/bootstrap/dist/css/bootstrap.min.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"components/bootstrap/dist/css/bootstrap.min.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"components/fontawesome/css/font-awesome.min.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"components/fontawesome/css/font-awesome.min.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"css/theme.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"css/theme.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"css/converse.css"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"css/converse.css"
/>
<script
src=
"components/requirejs/require.js"
></script>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"css/converse.min.css"
/>
<link
rel=
"shortcut icon"
type=
"image/ico"
href=
"css/images/favicon.ico"
/>
<!-- Only for development: <script data-main="main" src="components/requirejs/require.js"></script> -->
<
![
if
gte
IE
9
]
>
<script
src=
"builds/converse.website.min.js"
></script>
<
![
endif
]
>
<!--[if lt IE 9]>
<script src="builds/converse.website-no-otr.min.js"></script>
<![endif]-->
</head>
</head>
<body
id=
"page-top"
data-spy=
"scroll"
data-target=
".navbar-custom"
>
<body
id=
"page-top"
data-spy=
"scroll"
data-target=
".navbar-custom"
>
...
@@ -87,7 +94,7 @@
...
@@ -87,7 +94,7 @@
</div>
</div>
</div>
</div>
</div>
</div>
</section
</section
>
<section
id=
"about"
class=
"container content-section text-center"
>
<section
id=
"about"
class=
"container content-section text-center"
>
<div
class=
"row"
>
<div
class=
"row"
>
...
@@ -225,23 +232,21 @@
...
@@ -225,23 +232,21 @@
<script
type=
"text/javascript"
>
try
{
var
pageTracker
=
_gat
.
_getTracker
(
"
UA-2128260-8
"
);
pageTracker
.
_trackPageview
();
}
catch
(
err
)
{}
</script>
<script
type=
"text/javascript"
>
try
{
var
pageTracker
=
_gat
.
_getTracker
(
"
UA-2128260-8
"
);
pageTracker
.
_trackPageview
();
}
catch
(
err
)
{}
</script>
<script>
<script>
require
([
'
main.js
'
],
function
()
{
// Configuration loaded, so safe to make other require calls.
// Configuration loaded, so safe to make other require calls.
require
([
'
converse
'
],
function
(
converse
)
{
require
([
'
converse
'
],
function
(
converse
)
{
converse
.
initialize
({
converse
.
initialize
({
allow_otr
:
true
,
allow_otr
:
true
,
auto_list_rooms
:
false
,
auto_list_rooms
:
false
,
auto_subscribe
:
false
,
auto_subscribe
:
false
,
bosh_service_url
:
'
https://bind.conversejs.org
'
,
// Please use this connection manager only for testing purposes
bosh_service_url
:
'
https://bind.conversejs.org
'
,
// Please use this connection manager only for testing purposes
hide_muc_server
:
false
,
hide_muc_server
:
false
,
i18n
:
locales
[
'
en
'
],
// Refer to ./locale/locales.js to see which locales are supported
i18n
:
locales
[
'
en
'
],
// Refer to ./locale/locales.js to see which locales are supported
keepalive
:
true
,
keepalive
:
true
,
play_sounds
:
true
,
play_sounds
:
true
,
prebind
:
false
,
prebind
:
false
,
show_controlbox_by_default
:
true
,
show_controlbox_by_default
:
true
,
debug
:
true
,
debug
:
true
,
roster_groups
:
true
roster_groups
:
true
});
});
});
});
});
</script>
</script>
...
...
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