forked from deanoemcke/spaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitcher.html
30 lines (25 loc) · 1.02 KB
/
switcher.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
28
29
30
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:700,300,600,400' rel='stylesheet' type='text/css'>
<title id='tabTitle'>Quick switch spaces</title>
<link type="image/ico" rel="icon" id="tabFavicon" href="/img/icon16.png">
<link type="text/css" href="css/style.css" rel="stylesheet"></link>
<link type="text/css" href="css/panel.css" rel="stylesheet"></link>
<script type="text/javascript" src="js/switcher.js"></script>
<script type="text/javascript" src="js/spacesRenderer.js"></script>
</head>
<body>
<div class="mainContent">
<div class="contentBody">
<form id="spaceSelectForm">
<input id="sessionsInput" list="sessionsList" type="text" autocomplete="off" placeholder="Type a space name" />
</form>
<div id="spacesList">
<div id="savedSpaces"></div>
</div>
</div>
</div>
</body>
</html>