mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
Added dynamic tooltip for sidebar tongue
This commit is contained in:
parent
be9adfaad4
commit
7393818fc0
3 changed files with 10 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
template(name="sidebar")
|
||||
.board-sidebar.sidebar(class="{{#if isOpen}}is-open{{/if}}")
|
||||
a.sidebar-tongue.js-toggle-sidebar(
|
||||
class="{{#if isTongueHidden}}is-hidden{{/if}}")
|
||||
class="{{#if isTongueHidden}}is-hidden{{/if}}")(title="{{showTongueTitle}}")
|
||||
i.fa.fa-angle-left
|
||||
.sidebar-shadow
|
||||
.sidebar-content.sidebar-shortcuts
|
||||
|
|
|
@ -89,6 +89,13 @@ BlazeComponent.extendComponent({
|
|||
return TAPi18n.__(viewTitles[this.getView()]);
|
||||
},
|
||||
|
||||
showTongueTitle() {
|
||||
if (this.isOpen())
|
||||
return `${TAPi18n.__('sidebar-close')}`;
|
||||
else
|
||||
return `${TAPi18n.__('sidebar-open')}`;
|
||||
},
|
||||
|
||||
events() {
|
||||
return [{
|
||||
'click .js-hide-sidebar': this.hide,
|
||||
|
|
|
@ -293,6 +293,8 @@
|
|||
"shortcut-toggle-filterbar": "Toggle Filter Sidebar",
|
||||
"shortcut-toggle-sidebar": "Toggle Board Sidebar",
|
||||
"show-cards-minimum-count": "Show cards count if list contains more than",
|
||||
"sidebar-open": "Open Sidebar",
|
||||
"sidebar-close": "Close Sidebar",
|
||||
"signupPopup-title": "Create an Account",
|
||||
"star-board-title": "Click to star this board. It will show up at top of your boards list.",
|
||||
"starred-boards": "Starred Boards",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue