mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
489f9a0079
* Replacement icon stopwatch on As discussed in issue #2690 * Replacement icon stopwatch off As discussed in issue #2690 * Added missing tag "Resources" (Community Resource) * Tried to make a sentence clearer CamelCase words are NOT joined with hyphens (copy-paste error?). Copied "directly" from the line below to make the meaning even clearer. * Does deleting make the conflict go? * Recreate deleted file with updated text * days filter example should show highlights - show a highlight using a longer timespan (180 days) - added a second highlight to demo timespan with start AND end in the past - better readability * days Operator explanation optimisations - typo - readability (explain { positive | negative } first; remove duplication) * Remove additional blank line * Remove whitespace after save button When the save button was not the last edit button (tested by moving to another place via control panel > Appearance > Toolbars > Edit Toolbar by drag-and-drop) then we got additional spacing due to whitespace in the resulting HTML after the button. This is a fix for that, I discovered while developing additional edit buttons.
20 lines
1008 B
Plaintext
20 lines
1008 B
Plaintext
title: $:/core/ui/Buttons/save
|
|
tags: $:/tags/EditToolbar
|
|
caption: {{$:/core/images/done-button}} {{$:/language/Buttons/Save/Caption}}
|
|
description: {{$:/language/Buttons/Save/Hint}}
|
|
|
|
<$fieldmangler><$button tooltip={{$:/language/Buttons/Save/Hint}} aria-label={{$:/language/Buttons/Save/Caption}} class=<<tv-config-toolbar-class>>>
|
|
<$action-sendmessage $message="tm-add-tag" $param={{$:/temp/NewTagName}}/>
|
|
<$action-deletetiddler $tiddler="$:/temp/NewTagName"/>
|
|
<$action-sendmessage $message="tm-add-field" $name={{$:/temp/newfieldname}} $value={{$:/temp/newfieldvalue}}/>
|
|
<$action-deletetiddler $tiddler="$:/temp/newfieldname"/>
|
|
<$action-deletetiddler $tiddler="$:/temp/newfieldvalue"/>
|
|
<$action-sendmessage $message="tm-save-tiddler"/>
|
|
<$list filter="[<tv-config-toolbar-icons>prefix[yes]]">
|
|
{{$:/core/images/done-button}}
|
|
</$list>
|
|
<$list filter="[<tv-config-toolbar-text>prefix[yes]]">
|
|
<span class="tc-btn-text"><$text text={{$:/language/Buttons/Save/Caption}}/></span>
|
|
</$list>
|
|
</$button></$fieldmangler>
|