-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsearch.html
27 lines (22 loc) · 1.03 KB
/
search.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: page
title: Masterlist Search
permalink: /search/
---
<p>Search for a plugin name to find matching entries in the LOOT masterlists. Partial matching is only supported for non-regex entries, so use the full plugin name to find any regex entries for it.</p>
<div>
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent mdl-js-ripple-effect" id="searchButton">Search</button>
for
<span class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" id="searchBox" autofocus />
<label class="mdl-textfield__label" for="searchBox">Plugin</label>
</span>
in the
<button id="gameSelectButton" class="mdl-button mdl-js-button"></button>
<ul id="gameSelectMenu" for="gameSelectButton" class="mdl-menu mdl-js-menu">
</ul>
masterlist.
</div>
<div id="progress" class="mdl-spinner mdl-js-spinner mdl-spinner--single-color is-active hidden"></div>
<div id="results" class="mdl-shadow--2dp"></div>
<script src="/js/search.js" type="module"></script>