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
300b069a
Commit
300b069a
authored
Mar 01, 2013
by
ichim-david
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ; Do only one dom insertion in case of /help
parent
6afb091d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
converse.js
converse.js
+3
-3
No files found.
converse.js
View file @
300b069a
...
...
@@ -792,7 +792,7 @@
},
initialize
:
function
()
{
$
(
'
body
'
).
append
(
$
(
this
.
el
)
.
hide
());
$
(
'
body
'
).
append
(
this
.
$el
.
hide
());
},
template
:
_
.
template
(
...
...
@@ -905,8 +905,8 @@
break
;
case
'
help
'
:
$chat_content
=
this
.
$el
.
find
(
'
.chat-content
'
);
$chat_content
.
append
(
$
(
'
<div class="chat-help"><strong>/help</strong>: Show this menu</div>
'
));
$chat_content
.
append
(
$
(
'
<div class="chat-help"><strong>/topic</strong>: Set chatroom topic</div>
'
)
);
$chat_content
.
append
(
'
<div class="chat-help"><strong>/help</strong>: Show this menu</div>
'
+
'
<div class="chat-help"><strong>/topic</strong>: Set chatroom topic</div>
'
);
/* TODO:
$chat_content.append($('<div class="chat-help"><strong>/kick</strong>: Kick out user</div>'));
$chat_content.append($('<div class="chat-help"><strong>/ban</strong>: Ban user</div>'));
...
...
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