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
c7ae1880
Commit
c7ae1880
authored
Sep 06, 2018
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-add signout icon and hide clear-text icon when appropriate
parent
4903d748
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
dist/converse.js
dist/converse.js
+2
-2
src/templates/profile_view.html
src/templates/profile_view.html
+1
-1
src/templates/roster_filter.html
src/templates/roster_filter.html
+1
-1
No files found.
dist/converse.js
View file @
c7ae1880
...
...
@@ -79562,7 +79562,7 @@ __e(o.title_your_profile) +
__e(o.title_change_status) +
'" data-toggle="modal" data-target="#settingsModal"></a> -->\n ';
if (o._converse.allow_logout) { ;
__p += '\n <a class="chatbox-btn logout fa fa-sign-out align-self-center" title="' +
__p += '\n <a class="chatbox-btn logout fa fa-sign-out
-alt
align-self-center" title="' +
__e(o.title_log_out) +
'"></a>\n ';
} ;
...
...
@@ -80078,7 +80078,7 @@ __p += ' hidden ';
__p += '"\n placeholder="' +
__e(o.placeholder) +
'">\n <span class="clear-input fa fa-times ';
if (!o.filter_text) { ;
if (!o.filter_text
|| o.filter_type === 'state'
) { ;
__p += ' hidden ';
} ;
__p += '"></span>\n </div>\n\n <select class="form-control state-type ';
src/templates/profile_view.html
View file @
c7ae1880
...
...
@@ -7,7 +7,7 @@
<!-- <a class="chatbox-btn fa fa-vcard align-self-center" title="{{{o.title_your_profile}}}" data-toggle="modal" data-target="#userProfileModal"></a> -->
<!-- <a class="chatbox-btn fa fa-cog align-self-center" title="{{{o.title_change_status}}}" data-toggle="modal" data-target="#settingsModal"></a> -->
{[ if (o._converse.allow_logout) { ]}
<a
class=
"chatbox-btn logout fa fa-sign-out align-self-center"
title=
"{{{o.title_log_out}}}"
></a>
<a
class=
"chatbox-btn logout fa fa-sign-out
-alt
align-self-center"
title=
"{{{o.title_log_out}}}"
></a>
{[ } ]}
</div>
<div
class=
"d-flex xmpp-status"
>
...
...
src/templates/roster_filter.html
View file @
c7ae1880
...
...
@@ -4,7 +4,7 @@
<input
{[
if
(
o
.
filter_text
)
{
]}
value=
"{{{o.filter_text}}}"
{[
}
]}
class=
"roster-filter form-control {[ if (o.filter_type === 'state') { ]} hidden {[ } ]}"
placeholder=
"{{{o.placeholder}}}"
>
<span
class=
"clear-input fa fa-times {[ if (!o.filter_text) { ]} hidden {[ } ]}"
></span>
<span
class=
"clear-input fa fa-times {[ if (!o.filter_text
|| o.filter_type === 'state'
) { ]} hidden {[ } ]}"
></span>
</div>
<select
class=
"form-control state-type {[ if (o.filter_type !== 'state') { ]} hidden {[ } ]}"
>
...
...
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