mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36: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
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
title: $:/core/ui/Buttons/save-wiki
|
|
tags: $:/tags/PageControls
|
|
caption: {{$:/plugins/tiddlywiki/tiddlyweb/icon/cloud}} Server status
|
|
description: Status of synchronisation with server
|
|
|
|
\whitespace trim
|
|
\define config-title()
|
|
$:/config/PageControlButtons/Visibility/$(listItem)$
|
|
\end
|
|
<$button popup=<<qualify "$:/state/popup/save-wiki">> tooltip="Status of synchronisation with server" aria-label="Server status" class=<<tv-config-toolbar-class>> selectedClass="tc-selected">
|
|
<span class="tc-dirty-indicator">
|
|
<%if [<tv-config-toolbar-icons>match[yes]] %>
|
|
{{$:/plugins/tiddlywiki/tiddlyweb/icon/cloud}}
|
|
<%endif%>
|
|
<%if [<tv-config-toolbar-text>match[yes]] %>
|
|
<span class="tc-btn-text"><$text text="Server status"/></span>
|
|
<%endif%>
|
|
</span>
|
|
</$button>
|
|
<$reveal state=<<qualify "$:/state/popup/save-wiki">> type="popup" position="belowleft" animate="yes">
|
|
<div class="tc-drop-down">
|
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/SyncerDropdown]!has[draft.of]]" variable="listItem">
|
|
<$transclude tiddler=<<listItem>>/>
|
|
</$list>
|
|
</div>
|
|
</$reveal>
|