-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
33 lines (27 loc) · 967 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
<html>
<head>
<title>Openure Options</title>
<link rel="stylesheet" type="text/css" href="openure.css">
</head>
<body>
<div id="main">
<h2>Openure Options</h2>
<!-- <h3>The opposite of Closure options </h3> -->
<p>Enter the global variable name of the top level variable that will hold your backbone views.</p>
<section>
<label>Backbone Application Variable (page variable where your views live):</label>
<input id="openure-key"/>
<br />
<label>URLs to run against (comma or new-line separated, without the protocol) For example: fun.website.com:</label>
<textarea id="openure-urls" rows="4"></textarea>
<br />
<label>Run in local development mode:</label>
<input type='checkbox' id="openure-development"/>
<br />
<div id="status"></div>
<button id="save">Save</button>
</section>
</div>
</body>
<script src="options.js"></script>
</html>