mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-12-06 08:48:05 +00:00
Add new button to temporarily suspend timestamps
Useful when you want to make an edit but preserve the modification date/time.
This commit is contained in:
27
core/ui/PageControls/timestamp.tid
Normal file
27
core/ui/PageControls/timestamp.tid
Normal file
@@ -0,0 +1,27 @@
|
||||
title: $:/core/ui/Buttons/timestamp
|
||||
tags: $:/tags/PageControls
|
||||
caption: {{$:/core/images/timestamp-on}} {{$:/language/Buttons/Timestamp/Caption}}
|
||||
description: {{$:/language/Buttons/Timestamp/Hint}}
|
||||
|
||||
<$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"/>
|
||||
<$list filter="[<tv-config-toolbar-icons>prefix[yes]]">
|
||||
{{$:/core/images/timestamp-on}}
|
||||
</$list>
|
||||
<$list filter="[<tv-config-toolbar-text>prefix[yes]]">
|
||||
<span class="tc-btn-text"><$text text={{$:/language/Buttons/Timestamp/On/Caption}}/></span>
|
||||
</$list>
|
||||
</$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"/>
|
||||
<$list filter="[<tv-config-toolbar-icons>prefix[yes]]">
|
||||
{{$:/core/images/timestamp-off}}
|
||||
</$list>
|
||||
<$list filter="[<tv-config-toolbar-text>prefix[yes]]">
|
||||
<span class="tc-btn-text"><$text text={{$:/language/Buttons/Timestamp/Off/Caption}}/></span>
|
||||
</$list>
|
||||
</$button>
|
||||
</$reveal>
|
||||
Reference in New Issue
Block a user