mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-24 06:50:02 +00:00
29 lines
914 B
Plaintext
29 lines
914 B
Plaintext
title: $:/core/ui/Buttons/save-wiki
|
|
tags: $:/tags/PageControls
|
|
caption: {{$:/core/images/save-button-dynamic}} {{$:/language/Buttons/SaveWiki/Caption}}
|
|
description: {{$:/language/Buttons/SaveWiki/Hint}}
|
|
|
|
\whitespace trim
|
|
\procedure saveActions()
|
|
<$wikify name="site-title" text={{$:/config/SaveWikiButton/Filename}}>
|
|
<$action-sendmessage $message="tm-save-wiki" $param={{$:/config/SaveWikiButton/Template}} filename=<<site-title>>/>
|
|
</$wikify>
|
|
\end
|
|
|
|
<$button actions=<<saveActions>>
|
|
tooltip={{$:/language/Buttons/SaveWiki/Hint}}
|
|
aria-label={{$:/language/Buttons/SaveWiki/Caption}}
|
|
class=<<tv-config-toolbar-class>>
|
|
>
|
|
<span class="tc-dirty-indicator">
|
|
<%if [<tv-config-toolbar-icons>match[yes]] %>
|
|
{{$:/core/images/save-button-dynamic}}
|
|
<%endif%>
|
|
<%if [<tv-config-toolbar-text>match[yes]] %>
|
|
<span class="tc-btn-text">
|
|
<$text text={{$:/language/Buttons/SaveWiki/Caption}}/>
|
|
</span>
|
|
<%endif%>
|
|
</span>
|
|
</$button>
|