Tab-Search-and-Manage/src/pages/tabsSearch.html

31 lines
1.0 KiB
HTML
Raw Normal View History

2017-12-16 04:09:28 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2018-04-20 06:06:32 +00:00
<link rel="stylesheet" href="../css/dragula.min.css">
2017-12-16 04:09:28 +00:00
<link rel="stylesheet" href="../css/tabsSearch.css"/>
</head>
2018-04-20 06:06:32 +00:00
<body id="masterContainer">
2017-12-16 04:09:28 +00:00
2018-04-20 06:06:32 +00:00
<div id="controls">
<input id="searchBar" type="text" placeholder="Search tabs..." value="" autofocus />
</div>
2017-12-16 04:09:28 +00:00
2018-05-06 01:02:50 +00:00
<div id="listZone" class="container"></div>
<div id="errorZone" style="display: none;"></div>
<div id="udArrows">
<button id="goTop" type="button" title="To Top">&Wedge;</button>
<button id="goToTab" type="button" title="Scroll Current Tab To View">&mdash;</button>
<button id="goBottom" type="button" title="To Bottom">&Vee;</button>
2018-04-20 06:06:32 +00:00
</div>
<script src="../scripts/libs/dragula.min.js" charset="utf-8"></script>
<script src="../scripts/dragContainersSetup.js" charset="utf-8"></script>
<script src="../scripts/generateView.js"></script>
<script src="../scripts/searchTabs.js"></script>
<script src="../scripts/eventListeners.js" charset="utf-8"></script>
2017-12-16 04:09:28 +00:00
</body>
</html>