forked from kdzwinel/Context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
29 lines (25 loc) · 947 Bytes
/
popup.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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/ui-lightness/jquery-ui-1.8.17.custom.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script src="js/libs/jquery-1.7.1.min.js"></script>
<script src="js/libs/jquery-ui-1.8.17.custom.min.js"></script>
<script src="js/classes/Configuration.class.js"></script>
<script src="js/classes/ContextsManager.class.js"></script>
<script src="js/classes/ExtensionsManager.class.js"></script>
<script src="js/popup.js"></script>
</head>
<body id='popup'>
<div class='screenContainer clearfix'>
<div id='contextsScreen'>
<ul class='simple-list'></ul>
</div>
<div id='extensionsScreen'>
<ul class='simple-list'>
<li><div class="back-to-contexts list-item ui-widget-content ui-corner-all"><span class='ui-icon ui-icon-triangle-1-w'></span> <span data-i18n="cancel"></span></div></li>
</ul>
</div>
</div>
</body>
</html>