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
67c00d77
Commit
67c00d77
authored
Aug 31, 2014
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak invite widget style and make the placeholder text translateable.
updates #215
parent
ff32866f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
+9
-8
converse.js
converse.js
+2
-1
css/converse.css
css/converse.css
+3
-3
less/converse.less
less/converse.less
+3
-3
src/templates/chatarea.html
src/templates/chatarea.html
+1
-1
No files found.
converse.js
View file @
67c00d77
...
...
@@ -2056,7 +2056,8 @@
this
.
$el
.
find
(
'
.chat-body
'
).
empty
().
append
(
converse
.
templates
.
chatarea
({
'
show_toolbar
'
:
converse
.
show_toolbar
,
'
label_message
'
:
__
(
'
Message
'
)
'
label_message
'
:
__
(
'
Message
'
),
'
label_invitation
'
:
__
(
'
Type to invite
'
)
})
);
this
.
initInviteWidget
().
renderToolbar
();
...
...
css/converse.css
View file @
67c00d77
...
...
@@ -606,9 +606,9 @@ span.spinner.hor_centered {
font-size
:
12px
;
}
#conversejs
.chatroom
.invited-contact
{
margin
:
2px
1px
0
1px
;
width
:
9
6
px
;
border
:
1px
solid
#999
;
margin
:
0
;
width
:
9
9
px
;
border
-bottom
:
1px
solid
#999
;
}
#conversejs
.participants
ul
.participant-list
li
{
overflow
:
hidden
;
...
...
less/converse.less
View file @
67c00d77
...
...
@@ -656,9 +656,9 @@ span.spinner.hor_centered {
}
#conversejs .chatroom .invited-contact {
margin:
2px 1px 0 1px
;
width: 9
6
px;
border: 1px solid #999;
margin:
0
;
width: 9
9
px;
border
-bottom
: 1px solid #999;
}
#conversejs .participants ul.participant-list li {
...
...
src/templates/chatarea.html
View file @
67c00d77
...
...
@@ -10,7 +10,7 @@
</div>
<div
class=
"participants"
>
<form
class=
"room-invite"
>
<input
class=
"invited-contact"
placeholder=
"
Invite someone
"
type=
"text"
/>
<input
class=
"invited-contact"
placeholder=
"
{{label_invitation}}
"
type=
"text"
/>
</form>
<label>
Participants:
</label>
<ul
class=
"participant-list"
></ul>
...
...
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