mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
b53f4e9b20
Missed off 987c876cfaa8f0d8050c687c26adee250fa0062d
53 lines
938 B
Plaintext
53 lines
938 B
Plaintext
title: $:/core/ui/EditorToolbar/stamp-dropdown
|
|
|
|
\define toolbar-button-stamp-inner()
|
|
<$button tag="a">
|
|
|
|
<$action-sendmessage
|
|
$message="tm-edit-text-operation"
|
|
$param="replace-selection"
|
|
text={{$(snippetTitle)$}}
|
|
/>
|
|
|
|
<$action-deletetiddler
|
|
$tiddler=<<dropdown-state>>
|
|
/>
|
|
|
|
<$view tiddler=<<snippetTitle>> field="caption" mode="inline">
|
|
|
|
<$view tiddler=<<snippetTitle>> field="title" mode="inline"/>
|
|
|
|
</$view>
|
|
|
|
</$button>
|
|
\end
|
|
|
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/TextEditor/Snippet]!has[draft.of]sort[caption]]" variable="snippetTitle">
|
|
|
|
<<toolbar-button-stamp-inner>>
|
|
|
|
</$list>
|
|
|
|
----
|
|
|
|
<$button tag="a">
|
|
|
|
<$action-sendmessage
|
|
$message="tm-new-tiddler"
|
|
tags="$:/tags/TextEditor/Snippet"
|
|
caption={{$:/language/Buttons/Stamp/New/Title}}
|
|
text={{$:/language/Buttons/Stamp/New/Text}}
|
|
/>
|
|
|
|
<$action-deletetiddler
|
|
$tiddler=<<dropdown-state>>
|
|
/>
|
|
|
|
<em>
|
|
|
|
<$text text={{$:/language/Buttons/Stamp/Caption/New}}/>
|
|
|
|
</em>
|
|
|
|
</$button>
|