mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
eaf8558595
* Let PageControls buttons use v5.3.2 syntax * Rewrite buttons and actions * Omit whitespace & use function to avoid duplicating * Omit whitespace in conditional syntax * Define tf.get-tags function to avoid duplicated text substitution * Rewrite advanced search button * Add space in join operator * Rewrite buttons in plugins * Remove tf prefix in new-journal.tid * Remove tf prefix in new-tiddler.tid
23 lines
783 B
Plaintext
23 lines
783 B
Plaintext
title: $:/core/ui/Buttons/manager
|
|
tags: $:/tags/PageControls
|
|
caption: {{$:/core/images/list}} {{$:/language/Buttons/Manager/Caption}}
|
|
description: {{$:/language/Buttons/Manager/Hint}}
|
|
|
|
\whitespace trim
|
|
\procedure manager-button(class)
|
|
<$button to="$:/Manager" tooltip={{$:/language/Buttons/Manager/Hint}} aria-label={{$:/language/Buttons/Manager/Caption}} class=`$(tv-config-toolbar-class)$ $(class)$`>
|
|
<%if [<tv-config-toolbar-icons>match[yes]] %>
|
|
{{$:/core/images/list}}
|
|
<%endif%>
|
|
<%if [<tv-config-toolbar-text>match[yes]] %>
|
|
<span class="tc-btn-text">
|
|
<$text text={{$:/language/Buttons/Manager/Caption}}/>
|
|
</span>
|
|
<%endif%>
|
|
</$button>
|
|
\end
|
|
|
|
<$list filter="[list[$:/StoryList]] +[field:title[$:/Manager]]" emptyMessage=<<manager-button>>>
|
|
<<manager-button "tc-selected">>
|
|
</$list>
|