| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 <paper-menu name="root-menu"> | 94 <paper-menu name="root-menu"> |
| 95 <div class="page-menu" id="basicPage"> | 95 <div class="page-menu" id="basicPage"> |
| 96 <paper-menu attr-for-selected="data-path" class="menu-content" | 96 <paper-menu attr-for-selected="data-path" class="menu-content" |
| 97 id="basicMenu" selected="[[currentRoute.path]]"> | 97 id="basicMenu" selected="[[currentRoute.path]]"> |
| 98 <if expr="chromeos"> | 98 <if expr="chromeos"> |
| 99 <div data-path="/internet" on-tap="openPage_"> | 99 <div data-path="/internet" on-tap="openPage_"> |
| 100 <iron-icon icon="settings:network-wifi"></iron-icon> | 100 <iron-icon icon="settings:network-wifi"></iron-icon> |
| 101 $i18n{internetPageTitle} | 101 $i18n{internetPageTitle} |
| 102 </div> | 102 </div> |
| 103 </if> | 103 </if> |
| 104 <div data-path="/people" on-tap="openPage_" | 104 <div id="people" data-path="/people" on-tap="openPage_" |
| 105 hidden="[[!pageVisibility.people]]"> | 105 hidden="[[!pageVisibility.people]]"> |
| 106 <iron-icon icon="settings:people"></iron-icon> | 106 <iron-icon icon="settings:people"></iron-icon> |
| 107 $i18n{peoplePageTitle} | 107 $i18n{peoplePageTitle} |
| 108 </div> | 108 </div> |
| 109 <div data-path="/appearance" on-tap="openPage_" | 109 <div data-path="/appearance" on-tap="openPage_" |
| 110 hidden="[[!pageVisibility.appearance]]"> | 110 hidden="[[!pageVisibility.appearance]]"> |
| 111 <iron-icon icon="settings:palette"></iron-icon> | 111 <iron-icon icon="settings:palette"></iron-icon> |
| 112 $i18n{appearancePageTitle} | 112 $i18n{appearancePageTitle} |
| 113 </div> | 113 </div> |
| 114 <if expr="chromeos"> | 114 <if expr="chromeos"> |
| (...skipping 84 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 |