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

Side by Side Diff: chrome/browser/resources/settings/settings_menu/settings_menu.html

Issue 2733963002: MD Settings: Debounce navigation event in side nav. (Closed)
Patch Set: feedback Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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-collapse/iron-coll apse.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
5 <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/iron-icon/iron-icon.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 $i18n{onStartup} 126 $i18n{onStartup}
127 </a> 127 </a>
128 <paper-button toggles id="advancedButton" 128 <paper-button toggles id="advancedButton"
129 aria-active-attribute="aria-expanded" active="{{advancedOpened}}" 129 aria-active-attribute="aria-expanded" active="{{advancedOpened}}"
130 hidden="[[!pageVisibility.advancedSettings]]"> 130 hidden="[[!pageVisibility.advancedSettings]]">
131 <span>$i18n{advancedPageTitle}</span> 131 <span>$i18n{advancedPageTitle}</span>
132 <iron-icon icon="[[arrowState_(advancedOpened)]]"> 132 <iron-icon icon="[[arrowState_(advancedOpened)]]">
133 </iron-icon></paper-button> 133 </iron-icon></paper-button>
134 <iron-collapse id="advancedSubmenu" opened="[[advancedOpened]]" 134 <iron-collapse id="advancedSubmenu" opened="[[advancedOpened]]"
135 hidden="[[!pageVisibility.advancedSettings]]"> 135 hidden="[[!pageVisibility.advancedSettings]]">
136 <iron-selector id="subMenu" selectable="a" attr-for-selected="href" 136 <iron-selector id="subMenu" selectable="a" attr-for-selected="href">
137 on-iron-activate="onSelectorActivate_">
138 <if expr="chromeos"> 137 <if expr="chromeos">
139 <a href="/dateTime"> 138 <a href="/dateTime">
140 <iron-icon icon="settings:access-time"></iron-icon> 139 <iron-icon icon="settings:access-time"></iron-icon>
141 $i18n{dateTimePageTitle} 140 $i18n{dateTimePageTitle}
142 </a> 141 </a>
143 </if> 142 </if>
144 <a href="/privacy"> 143 <a href="/privacy">
145 <iron-icon icon="settings:security"></iron-icon> 144 <iron-icon icon="settings:security"></iron-icon>
146 $i18n{privacyPageTitle} 145 $i18n{privacyPageTitle}
147 </a> 146 </a>
(...skipping 29 matching lines...) Expand all
177 $i18n{resetPageTitle} 176 $i18n{resetPageTitle}
178 </a> 177 </a>
179 </iron-selector> 178 </iron-selector>
180 </iron-collapse> 179 </iron-collapse>
181 <div class="separator"></div> 180 <div class="separator"></div>
182 <a id="about-menu" href="/help">$i18n{aboutPageTitle}</a> 181 <a id="about-menu" href="/help">$i18n{aboutPageTitle}</a>
183 </iron-selector> 182 </iron-selector>
184 </template> 183 </template>
185 <script src="settings_menu.js"></script> 184 <script src="settings_menu.js"></script>
186 </dom-module> 185 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698