| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/assert.html"> | 2 <link rel="import" href="chrome://resources/html/assert.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen
u.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen
u.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp
le.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp
le.html"> |
| 8 <link rel="import" href="/icons.html"> | 8 <link rel="import" href="/icons.html"> |
| 9 <link rel="import" href="/route.html"> | 9 <link rel="import" href="/route.html"> |
| 10 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 </div> | 129 </div> |
| 130 </if> | 130 </if> |
| 131 <div data-path="/onStartup" on-tap="openPage_" | 131 <div data-path="/onStartup" on-tap="openPage_" |
| 132 hidden="[[!pageVisibility.onStartup]]"> | 132 hidden="[[!pageVisibility.onStartup]]"> |
| 133 <iron-icon icon="settings:power-settings-new"></iron-icon> | 133 <iron-icon icon="settings:power-settings-new"></iron-icon> |
| 134 $i18n{onStartup} | 134 $i18n{onStartup} |
| 135 </div> | 135 </div> |
| 136 </paper-menu> | 136 </paper-menu> |
| 137 </div> | 137 </div> |
| 138 <paper-submenu class="page-menu" id="advancedPage" actionable | 138 <paper-submenu class="page-menu" id="advancedPage" actionable |
| 139 opened="{{advancedOpened_}}" | 139 opened="{{advancedOpened}}" |
| 140 hidden="[[!pageVisibility.advancedSettings]]"> | 140 hidden="[[!pageVisibility.advancedSettings]]"> |
| 141 <div class="menu-trigger"> | 141 <div class="menu-trigger"> |
| 142 <span>$i18n{advancedPageTitle}</span> | 142 <span>$i18n{advancedPageTitle}</span> |
| 143 <iron-icon icon="[[arrowState_(advancedOpened_)]]"></iron-icon> | 143 <iron-icon icon="[[arrowState_(advancedOpened)]]"></iron-icon> |
| 144 <paper-ripple></paper-ripple> | 144 <paper-ripple></paper-ripple> |
| 145 </div> | 145 </div> |
| 146 <paper-menu attr-for-selected="data-path" class="menu-content" | 146 <paper-menu attr-for-selected="data-path" class="menu-content" |
| 147 id="advancedMenu" selected="[[currentRoute.path]]"> | 147 id="advancedMenu" selected="[[currentRoute.path]]"> |
| 148 <if expr="chromeos"> | 148 <if expr="chromeos"> |
| 149 <div data-path="/dateTime" on-tap="openPage_"> | 149 <div data-path="/dateTime" on-tap="openPage_"> |
| 150 <iron-icon icon="settings:access-time"></iron-icon> | 150 <iron-icon icon="settings:access-time"></iron-icon> |
| 151 $i18n{dateTimePageTitle} | 151 $i18n{dateTimePageTitle} |
| 152 </div> | 152 </div> |
| 153 </if> | 153 </if> |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 <paper-submenu class="page-menu"> | 199 <paper-submenu class="page-menu"> |
| 200 <div about-selected$="[[aboutSelected_]]" class="menu-trigger" | 200 <div about-selected$="[[aboutSelected_]]" class="menu-trigger" |
| 201 id="about-menu" on-tap="openPage_" data-path="/help"> | 201 id="about-menu" on-tap="openPage_" data-path="/help"> |
| 202 $i18n{aboutPageTitle} | 202 $i18n{aboutPageTitle} |
| 203 </div> | 203 </div> |
| 204 </paper-submenu> | 204 </paper-submenu> |
| 205 </paper-menu> | 205 </paper-menu> |
| 206 </template> | 206 </template> |
| 207 <script src="settings_menu.js"></script> | 207 <script src="settings_menu.js"></script> |
| 208 </dom-module> | 208 </dom-module> |
| OLD | NEW |