OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title i18n="optionsTitle">TITLE</title> | 4 <title i18n="optionsTitle">TITLE</title> |
5 <link rel="stylesheet" type="text/css" href="options.css"> | 5 <link rel="stylesheet" type="text/css" href="options.css"> |
6 </head> | 6 </head> |
7 | 7 |
8 <body> | 8 <body> |
9 <span i18n="optionsBlacklist"></span><br> | 9 <div class="feedback-button"> |
10 <textarea id="blacklist" rows="8"></textarea><br> | 10 <a href="" i18n="sendFeedback" id="feedback-link"></a> |
| 11 </div> |
11 | 12 |
12 <div class="applets"> | 13 <div> |
13 <input type="checkbox" id="disableInApplets"> | 14 <div class="setting"> |
14 <label i18n="optionsAppletCheckbox" for="disableInApplets"></label><br> | 15 <span i18n="optionsBlacklist"></span><br> |
15 <div class="whitelist"> | 16 <textarea id="blacklist" rows="8"></textarea><br> |
16 <span i18n="optionsWhitelist" class="toggled"></span><br> | |
17 <textarea id="whitelist" rows="8" class="toggled"></textarea><br> | |
18 </div> | 17 </div> |
| 18 |
| 19 <fieldset> |
| 20 <legend i18n="optionsAppletGroup" id="fieldset-legend"></legend> |
| 21 <input type="checkbox" id="disableInApplets" class="setting"> |
| 22 <label i18n="optionsAppletCheckbox" for="disableInApplets"></label> |
| 23 <div class="sub-setting"> |
| 24 <span i18n="optionsWhitelist" class="toggled"></span><br> |
| 25 <textarea id="whitelist" rows="8" class="toggled"></textarea> |
| 26 </div> |
| 27 </fieldset> |
19 </div> | 28 </div> |
20 | 29 |
21 <div id="error"> </div> | 30 <div id="error"> </div> |
22 <a href="" i18n="sendFeedback" id="report_page"></a> | 31 |
23 <div class="buttons"> | 32 <div class="buttons"> |
24 <button i18n="optionsSave" id="done_button"></button> | 33 <button i18n="optionsSave" id="done-button"></button> |
25 <button i18n="optionsCancel" id="cancel_button"></button> | 34 <button i18n="optionsCancel" id="cancel-button"></button> |
26 </div> | 35 </div> |
27 | 36 |
28 <script src="common.js"></script> | 37 <script src="common.js"></script> |
29 <script src="options.js"></script> | 38 <script src="options.js"></script> |
30 </body> | 39 </body> |
31 </html> | 40 </html> |
OLD | NEW |