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
33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
title: $:/core/ui/Buttons/timestamp
|
|
tags: $:/tags/PageControls
|
|
caption: {{$:/core/images/timestamp-on}} {{$:/language/Buttons/Timestamp/Caption}}
|
|
description: {{$:/language/Buttons/Timestamp/Hint}}
|
|
|
|
\whitespace trim
|
|
<$reveal type="nomatch" state="$:/config/TimestampDisable" text="yes">
|
|
<$button tooltip={{$:/language/Buttons/Timestamp/On/Hint}} aria-label={{$:/language/Buttons/Timestamp/On/Caption}} class=<<tv-config-toolbar-class>>>
|
|
<$action-setfield $tiddler="$:/config/TimestampDisable" $value="yes"/>
|
|
<%if [<tv-config-toolbar-icons>match[yes]] %>
|
|
{{$:/core/images/timestamp-on}}
|
|
<%endif%>
|
|
<%if [<tv-config-toolbar-text>match[yes]] %>
|
|
<span class="tc-btn-text">
|
|
<$text text={{$:/language/Buttons/Timestamp/On/Caption}}/>
|
|
</span>
|
|
<%endif%>
|
|
</$button>
|
|
</$reveal>
|
|
<$reveal type="match" state="$:/config/TimestampDisable" text="yes">
|
|
<$button tooltip={{$:/language/Buttons/Timestamp/Off/Hint}} aria-label={{$:/language/Buttons/Timestamp/Off/Caption}} class=<<tv-config-toolbar-class>>>
|
|
<$action-setfield $tiddler="$:/config/TimestampDisable" $value="no"/>
|
|
<%if [<tv-config-toolbar-icons>match[yes]] %>
|
|
{{$:/core/images/timestamp-off}}
|
|
<%endif%>
|
|
<%if [<tv-config-toolbar-text>match[yes]] %>
|
|
<span class="tc-btn-text">
|
|
<$text text={{$:/language/Buttons/Timestamp/Off/Caption}}/>
|
|
</span>
|
|
<%endif%>
|
|
</$button>
|
|
</$reveal>
|