-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
36 lines (27 loc) · 954 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
30
31
32
33
34
35
36
<!doctype html>
<html>
<head>
<title>AutoMate</title>
<link href="src/popup/popup.css" rel="stylesheet" type="text/css">
<script src="dependencies/jquery.js"></script>
<script src="dependencies/underscore.js"></script>
<script src="dependencies/backbone-min.js"></script>
<script src="src/defaults.js"></script>
<script src="src/models/buttons.js"></script>
<script src="src/models/variables.js"></script>
<script src="src/models/storage.js"></script>
<script src="src/popup/buttonsView.js"></script>
<script src="src/popup/appView.js"></script>
<script src="src/popup/script_executor.js"></script>
<script src="src/main.js"></script>
</head>
<body>
<div id="app">
<img id='logo' src="images/logo.svg">
<img id='settings' src="images/settings.svg">
<div class='btn-group' id="buttons">
<div id='buttons'></div>>
</div>
</div>
</body>
</html>