OLD | NEW |
---|---|
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> | 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> |
3 <link rel="import" href="/i18n_setup.html"> | 3 <link rel="import" href="/i18n_setup.html"> |
4 <link rel="import" href="/icons.html"> | 4 <link rel="import" href="/icons.html"> |
5 <link rel="import" href="/lifetime_browser_proxy.html"> | 5 <link rel="import" href="/lifetime_browser_proxy.html"> |
6 <link rel="import" href="/settings_page/main_page_behavior.html"> | 6 <link rel="import" href="/settings_page/main_page_behavior.html"> |
7 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 7 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
8 <link rel="import" href="/settings_page/settings_section.html"> | 8 <link rel="import" href="/settings_page/settings_section.html"> |
9 <link rel="import" href="/settings_page_css.html"> | 9 <link rel="import" href="/settings_page_css.html"> |
10 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
124 $i18n{aboutRelaunchAndPowerwash} | 124 $i18n{aboutRelaunchAndPowerwash} |
125 </paper-button> | 125 </paper-button> |
126 <paper-button id="checkForUpdates" class="secondary-button" | 126 <paper-button id="checkForUpdates" class="secondary-button" |
127 hidden="[[!shouldShowCheckUpdates_(currentUpdateStatusEvent_ )]]" | 127 hidden="[[!shouldShowCheckUpdates_(currentUpdateStatusEvent_ )]]" |
128 on-tap="onCheckUpdatesTap_"> | 128 on-tap="onCheckUpdatesTap_"> |
129 $i18n{aboutCheckForUpdates} | 129 $i18n{aboutCheckForUpdates} |
130 </paper-button> | 130 </paper-button> |
131 </if> | 131 </if> |
132 </span> | 132 </span> |
133 </div> | 133 </div> |
134 <div id="help" class="settings-box two-line" on-tap="onHelpTap_" | 134 <div id="help" class="settings-box" on-tap="onHelpTap_" |
135 actionable> | 135 actionable> |
michaelpg
2016/07/18 18:32:18
nit: remove wrap?
dpapad
2016/07/18 18:48:44
Done.
| |
136 $i18n{aboutGetHelpUsingChrome} | 136 $i18n{aboutGetHelpUsingChrome} |
137 </div> | 137 </div> |
138 <if expr="_google_chrome"> | 138 <if expr="_google_chrome"> |
139 <div id="reportIssue" class="settings-box" actionable | 139 <div id="reportIssue" class="settings-box" actionable |
140 on-tap="onReportIssueTap_"> | 140 on-tap="onReportIssueTap_"> |
141 $i18n{aboutReportAnIssue} | 141 $i18n{aboutReportAnIssue} |
142 </div> | 142 </div> |
143 </if> | 143 </if> |
144 <if expr="chromeos"> | 144 <if expr="chromeos"> |
145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" | 145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" |
(...skipping 30 matching lines...) Expand all Loading... | |
176 <settings-detailed-build-info></settings-detailed-build-info> | 176 <settings-detailed-build-info></settings-detailed-build-info> |
177 </settings-subpage> | 177 </settings-subpage> |
178 </template> | 178 </template> |
179 </if> | 179 </if> |
180 </settings-animated-pages> | 180 </settings-animated-pages> |
181 </settings-section> | 181 </settings-section> |
182 </div> | 182 </div> |
183 </template> | 183 </template> |
184 <script src="about_page.js"></script> | 184 <script src="about_page.js"></script> |
185 </dom-module> | 185 </dom-module> |
OLD | NEW |