2020-02-28 14:33:15 +00:00
|
|
|
title: $:/plugins/tiddlywiki/menubar/items/search
|
|
|
|
custom-menu-content: {{$:/plugins/tiddlywiki/menubar/items/search}}
|
|
|
|
description: Search
|
|
|
|
caption: Search
|
|
|
|
tags: $:/tags/MenuBar
|
|
|
|
|
2020-02-28 16:09:26 +00:00
|
|
|
<$set name="searchTiddler" value="$:/temp/menubarsearch">
|
2020-02-28 14:33:15 +00:00
|
|
|
|
|
|
|
<span style="margin: 0 0.5em;">
|
|
|
|
|
2020-06-11 10:41:35 +00:00
|
|
|
<$edit-text tiddler=<<searchTiddler>> tag="input" type="search" focusPopup="$:/state/popup/menubar-search-dropdown" class="tc-popup-handle tc-menu-show-when-wide" placeholder="Search..." default="" cancelPopups="yes"/>
|
2020-02-28 14:33:15 +00:00
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<$reveal tag="div" class="tc-block-dropdown-wrapper" state="$:/state/popup/menubar-search-dropdown" type="nomatch" text="" default="">
|
|
|
|
|
|
|
|
<div class="tc-block-dropdown tc-search-drop-down">
|
|
|
|
|
|
|
|
<$list filter="[<searchTiddler>get[text]minlength[1]]" emptyMessage="""<div class="tc-search-results">Type your search terms</div>""" variable="ignore">
|
|
|
|
|
|
|
|
<$list filter="[<searchTiddler>get[text]minlength{$:/config/Search/MinLength}limit[1]]" emptyMessage="""<div class="tc-search-results">{{$:/language/Search/Search/TooShort}}</div>""" variable="listItem">
|
|
|
|
|
|
|
|
{{$:/core/ui/SearchResults}}
|
|
|
|
|
|
|
|
</$list>
|
|
|
|
|
|
|
|
</$list>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</$reveal>
|
|
|
|
|
|
|
|
</$set>
|