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

Side by Side Diff: chrome/browser/resources/settings/settings_ui/settings_ui.js

Issue 2825203003: MD Settings: Remove subpage animation when landing directly on it. (Closed)
Patch Set: feedback Created 3 years, 7 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * 'settings-ui' implements the UI for the Settings page. 7 * 'settings-ui' implements the UI for the Settings page.
8 * 8 *
9 * Example: 9 * Example:
10 * 10 *
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 /** 50 /**
51 * Dictionary defining page visibility. 51 * Dictionary defining page visibility.
52 * This is only set when in guest mode. All pages are visible when not set 52 * This is only set when in guest mode. All pages are visible when not set
53 * because polymer only notifies after a property is set. 53 * because polymer only notifies after a property is set.
54 * @private {!GuestModePageVisibility} 54 * @private {!GuestModePageVisibility}
55 */ 55 */
56 pageVisibility_: Object, 56 pageVisibility_: Object,
57 57
58 /** @private */ 58 /** @private */
59 shouldHideContainer_: Boolean,
60
61 /** @private */
59 showAndroidApps_: Boolean, 62 showAndroidApps_: Boolean,
60 63
61 /** @private */ 64 /** @private */
62 lastSearchQuery_: { 65 lastSearchQuery_: {
63 type: String, 66 type: String,
64 value: '', 67 value: '',
65 } 68 }
66 }, 69 },
67 70
68 listeners: { 71 listeners: {
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 this.$.container.removeAttribute('tabindex'); 279 this.$.container.removeAttribute('tabindex');
277 }.bind(this)); 280 }.bind(this));
278 }, 281 },
279 282
280 /** @private */ 283 /** @private */
281 directionDelegateChanged_: function() { 284 directionDelegateChanged_: function() {
282 this.$.drawer.align = this.directionDelegate.isRtl() ? 285 this.$.drawer.align = this.directionDelegate.isRtl() ?
283 'right' : 'left'; 286 'right' : 'left';
284 }, 287 },
285 }); 288 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698