OLD | NEW |
---|---|
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <meta charset="utf-8" /> | 10 <meta charset="utf-8" /> |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
227 type="submit" i18n-content="CONNECT_BUTTON"></button> | 227 type="submit" i18n-content="CONNECT_BUTTON"></button> |
228 <button class="big-button" type="button" | 228 <button class="big-button" type="button" |
229 i18n-content="CANCEL" | 229 i18n-content="CANCEL" |
230 onclick="remoting.setMode(remoting.AppMode.HOME);"> | 230 onclick="remoting.setMode(remoting.AppMode.HOME);"> |
231 </button> | 231 </button> |
232 </form> | 232 </form> |
233 </div> <!-- code-entry-row --> | 233 </div> <!-- code-entry-row --> |
234 </div> <!-- client.unconnected --> | 234 </div> <!-- client.unconnected --> |
235 | 235 |
236 <div data-ui-mode="client.connecting" class="message" | 236 <div data-ui-mode="client.connecting" class="message" |
237 i18n-content="VERIFYING_CODE"> | 237 i18n-content="MESSAGE_CONNECTING"> |
238 </div> <!-- client.connecting --> | 238 </div> <!-- client.connecting --> |
239 | 239 |
240 <div data-ui-mode="client.connect-failed" | 240 <div data-ui-mode="client.connect-failed" |
241 class="message"> | 241 class="message"> |
242 <span id="connect-error-message" class="error-state"></span> | 242 <span id="connect-error-message" class="error-state"></span> |
243 </div> <!-- client.connect-failed --> | 243 </div> <!-- client.connect-failed --> |
244 | 244 |
245 <div data-ui-mode="client.session-finished" | 245 <div data-ui-mode="client.session-finished" |
246 class="message" i18n-content="MESSAGE_SESSION_FINISHED"> | 246 class="message" i18n-content="MESSAGE_SESSION_FINISHED"> |
247 </div> <!-- client.session-finished --> | 247 </div> <!-- client.session-finished --> |
248 | 248 |
249 <div data-ui-mode="client.connect-failed client.session-finished" | 249 <div data-ui-mode="client.connect-failed.it2me client.session-finished.i t2me" |
Jamie
2011/11/30 21:23:43
Don't show this button for Me2Me. For technical re
| |
250 class="centered-button"> | 250 class="centered-button"> |
251 <button type="button" | 251 <button type="button" |
252 class="big-button" | 252 class="big-button" |
253 i18n-content="OK" | 253 i18n-content="OK" |
254 autofocus="autofocus" | 254 autofocus="autofocus" |
255 onclick="remoting.setMode( | 255 onclick="remoting.setMode( |
256 remoting.AppMode.CLIENT_UNCONNECTED);"> | 256 remoting.AppMode.CLIENT_UNCONNECTED);"> |
257 </button> | 257 </button> |
258 </div> <!-- client.connect-failed client.session-finished --> | 258 </div> <!-- client.connect-failed client.session-finished --> |
259 | 259 |
(...skipping 30 matching lines...) Expand all Loading... | |
290 | 290 |
291 <section id="debug-log" dir="ltr" hidden> | 291 <section id="debug-log" dir="ltr" hidden> |
292 <div id="statistics"> | 292 <div id="statistics"> |
293 </div> | 293 </div> |
294 <div id="debug-messages"> | 294 <div id="debug-messages"> |
295 </div> | 295 </div> |
296 </section> <!-- debug-log --> | 296 </section> <!-- debug-log --> |
297 | 297 |
298 </body> | 298 </body> |
299 </html> | 299 </html> |
OLD | NEW |