OLD | NEW |
1 <div id="systemPage" class="page" hidden> | 1 <div id="systemPage" class="page" hidden> |
2 <h1 i18n-content="systemPage"></h1> | 2 <h1 i18n-content="systemPage"></h1> |
3 <div class="displaytable"> | 3 <div class="displaytable"> |
4 <section> | 4 <section> |
5 <h3 i18n-content="datetimeTitle"></h3> | 5 <h3 i18n-content="datetimeTitle"></h3> |
6 <div class="option-control-table"> | 6 <div class="option-control-table"> |
7 <span class="option-name" i18n-content="timezone"></span> | 7 <span class="option-name" i18n-content="timezone"></span> |
8 <div id="timezone-value"> | 8 <div id="timezone-value"> |
9 <select id="timezone-select" class="control" | 9 <select id="timezone-select" class="control" |
10 i18n-options="timezoneList" | 10 i18n-options="timezoneList" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 <section id="bluetooth-devices" hidden> | 51 <section id="bluetooth-devices" hidden> |
52 <h3 i18n-content="bluetooth"></h3> | 52 <h3 i18n-content="bluetooth"></h3> |
53 <div id="bluetooth-options-div"> | 53 <div id="bluetooth-options-div"> |
54 <div id="enable-bluetooth" class="checkbox"> | 54 <div id="enable-bluetooth" class="checkbox"> |
55 <label> | 55 <label> |
56 <input id="enable-bluetooth-label" type="checkbox" | 56 <input id="enable-bluetooth-label" type="checkbox" |
57 checked="checked" pref="settings.enable_bluetooth"> | 57 checked="checked" pref="settings.enable_bluetooth"> |
58 <span i18n-content="enableBluetooth"></span> | 58 <span i18n-content="enableBluetooth"></span> |
59 </label> | 59 </label> |
60 </div> | 60 </div> |
61 <div class="bluetooth-device-list"> | 61 <div id="bluetooth-device-list"> |
62 <!-- A list of connected devices is inserted here on page load. --> | 62 <!-- A list of connected devices is inserted here on page load. --> |
63 <!-- The list of devices is updated asynchronously on clicking | 63 <!-- The list of devices is updated asynchronously on clicking |
64 'Find Devices' --> | 64 'Find Devices' --> |
65 <button i18n-content="findBluetoothDevices"></button> | 65 </div> |
| 66 <div id = "bluetooth-finder-container"> |
| 67 <button id="bluetooth-find-devices" |
| 68 i18n-content="findBluetoothDevices"></button> |
| 69 <span id="bluetooth-scanning-label" class="transparent" |
| 70 i18n-content="bluetoothScanning" hidden></span> |
| 71 <div id="bluetooth-scanning-icon" class="transparent" hidden></div> |
66 </div> | 72 </div> |
67 </div> | 73 </div> |
68 </section> | 74 </section> |
69 <section> | 75 <section> |
70 <h3 i18n-content="language"></h3> | 76 <h3 i18n-content="language"></h3> |
71 <div class="option-control-table"> | 77 <div class="option-control-table"> |
72 <div class="option-name"> | 78 <div class="option-name"> |
73 <button id="language-button" i18n-content="languageCustomize"> | 79 <button id="language-button" i18n-content="languageCustomize"> |
74 </button> | 80 </button> |
75 </div> | 81 </div> |
(...skipping 11 matching lines...) Expand all Loading... |
87 <label> | 93 <label> |
88 <input id="accesibility-check" type="checkbox"> | 94 <input id="accesibility-check" type="checkbox"> |
89 <span i18n-content="accessibility"></span> | 95 <span i18n-content="accessibility"></span> |
90 </label> | 96 </label> |
91 </div> | 97 </div> |
92 </div> | 98 </div> |
93 </div> | 99 </div> |
94 </section> | 100 </section> |
95 </div> | 101 </div> |
96 </div> | 102 </div> |
OLD | NEW |