mirror of
https://github.com/He4eT/tabswitcher.git
synced 2026-05-04 17:07:23 +00:00
19 lines
586 B
HTML
19 lines
586 B
HTML
<!doctype html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset='UTF-8'>
|
|
<title>Tab List</title>
|
|
<link rel='stylesheet' href='../css/common.css' />
|
|
<link rel='stylesheet' href='./search.css' />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<input type='search' id='searchbox' placeholder='Filter' autofocus />
|
|
<input type='search' id='actionbox' placeholder='Action (? for help)' />
|
|
</header>
|
|
<main id='searchResults'></main>
|
|
<script type="text/javascript" src="./vendor/fuzzysort.js"></script>
|
|
<script type='module' src='./search.js'></script>
|
|
</body>
|
|
</html>
|
|
|