mirror of https://github.com/kiwix/libkiwix.git
27 lines
775 B
Plaintext
27 lines
775 B
Plaintext
<script>
|
|
$(function() {
|
|
$( "#kiwixsearchbox" ).autocomplete({
|
|
|
|
source: "/suggest?content=__CONTENT__",
|
|
dataType: "json",
|
|
cache: false,
|
|
|
|
select: function(event, ui) {
|
|
$( "#kiwixsearchform" ).submit();
|
|
},
|
|
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<span id="kiwixtoolbar" class="ui-widget-header ui-corner-all">
|
|
<button id="kiwixlibrary" onclick="window.location.href='/';">Library</button>
|
|
<button id="kiwixhome" onclick="window.location.href='/__CONTENT__/';">Home</button>
|
|
<form method="GET" action="/search" id="kiwixsearchform"/>
|
|
<input type="hidden" name="content" value="__CONTENT__" />
|
|
<input type="submit" id="kiwixsearch" value="Search" />
|
|
<input id="kiwixsearchbox" name="pattern"/>
|
|
</form>
|
|
</span>
|
|
<div style="display: block; height: 40px;"></div>
|