Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: remoting/webapp/main.html

Issue 12566035: Added survey butter-bar to web-app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved string grammar. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/main.css ('k') | remoting/webapp/manifest.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 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 26 matching lines...) Expand all
37 <script src="l10n.js"></script> 37 <script src="l10n.js"></script>
38 <script src="log_to_server.js"></script> 38 <script src="log_to_server.js"></script>
39 <script src="menu_button.js"></script> 39 <script src="menu_button.js"></script>
40 <script src="oauth2.js"></script> 40 <script src="oauth2.js"></script>
41 <script src="plugin_settings.js"></script> 41 <script src="plugin_settings.js"></script>
42 <script src="remoting.js"></script> 42 <script src="remoting.js"></script>
43 <script src="session_connector.js"></script> 43 <script src="session_connector.js"></script>
44 <script src="server_log_entry.js"></script> 44 <script src="server_log_entry.js"></script>
45 <script src="stats_accumulator.js"></script> 45 <script src="stats_accumulator.js"></script>
46 <script src="storage.js"></script> 46 <script src="storage.js"></script>
47 <script src="survey.js"></script>
47 <script src="toolbar.js"></script> 48 <script src="toolbar.js"></script>
48 <script src="ui_mode.js"></script> 49 <script src="ui_mode.js"></script>
49 <script src="xhr.js"></script> 50 <script src="xhr.js"></script>
50 <script src="wcs_sandbox_container.js"></script> 51 <script src="wcs_sandbox_container.js"></script>
51 <title i18n-content="PRODUCT_NAME"></title> 52 <title i18n-content="PRODUCT_NAME"></title>
52 </head> 53 </head>
53 54
54 <body> 55 <body>
55 56
56 <!-- loading-mode is initially visible, but becomes hidden as soon as an 57 <!-- loading-mode is initially visible, but becomes hidden as soon as an
(...skipping 20 matching lines...) Expand all
77 <!-- TODO(jamiewalch): Add this back in when we support it. 78 <!-- TODO(jamiewalch): Add this back in when we support it.
78 <a id="connection-history" 79 <a id="connection-history"
79 i18n-content="CONNECTION_HISTORY_BUTTON"></a> | 80 i18n-content="CONNECTION_HISTORY_BUTTON"></a> |
80 --> 81 -->
81 </span> 82 </span>
82 <a href="https://www.google.com/support/chrome/bin/answer.py?answer=1649 523" 83 <a href="https://www.google.com/support/chrome/bin/answer.py?answer=1649 523"
83 target="_blank" i18n-content="HELP"></a> 84 target="_blank" i18n-content="HELP"></a>
84 </div> 85 </div>
85 </header> 86 </header>
86 87
88 <div id="survey-opt-in" class="butter-bar" hidden>
89 <p>
90 <span i18n-content="SURVEY_INVITATION"></span>
91 <a id="survey-accept"
92 href="http://goo.gl/njH2q"
93 target="_blank"
94 i18n-content="SIGN_ME_UP"></a>
95 <a id="survey-decline" href="#">
96 <img src="icon_cross.webp" class="close-icon"></img>
97 </a>
98 </p>
99 </div>
100
87 <div data-ui-mode="home" hidden> 101 <div data-ui-mode="home" hidden>
88 102
89 <section> 103 <section>
90 <h2 i18n-content="MODE_IT2ME"></h2> 104 <h2 i18n-content="MODE_IT2ME"></h2>
91 <div id="it2me-first-run"> 105 <div id="it2me-first-run">
92 <div> 106 <div>
93 <p class="infographic-description" 107 <p class="infographic-description"
94 i18n-content="IT2ME_FIRST_RUN"></p> 108 i18n-content="IT2ME_FIRST_RUN"></p>
95 <button id="get-started-it2me" 109 <button id="get-started-it2me"
96 i18n-content="GET_STARTED" 110 i18n-content="GET_STARTED"
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 <div class="arrow-down"></div> 693 <div class="arrow-down"></div>
680 </div> 694 </div>
681 </div> <!-- session-toolbar --> 695 </div> <!-- session-toolbar -->
682 </div> <!-- session-mode --> 696 </div> <!-- session-mode -->
683 697
684 <div id="statistics" dir="ltr" class="selectable" hidden> 698 <div id="statistics" dir="ltr" class="selectable" hidden>
685 </div> <!-- statistics --> 699 </div> <!-- statistics -->
686 700
687 </body> 701 </body>
688 </html> 702 </html>
OLDNEW
« no previous file with comments | « remoting/webapp/main.css ('k') | remoting/webapp/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698