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

Unified Diff: chrome/browser/resources/settings/basic_page/basic_page.html

Issue 1358313004: Settings Rewrite: Make subpage scrolling work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/basic_page/basic_page.html
diff --git a/chrome/browser/resources/settings/basic_page/basic_page.html b/chrome/browser/resources/settings/basic_page/basic_page.html
index cf64f9ac94ac6180690139d78526e6bb43a22d57..0bf22192dba4d3f2fd097384871fa02e428daf6b 100644
--- a/chrome/browser/resources/settings/basic_page/basic_page.html
+++ b/chrome/browser/resources/settings/basic_page/basic_page.html
@@ -11,24 +11,25 @@
</if>
<dom-module id="cr-settings-basic-page">
+ <link rel="import" type="css" href="basic_page.css">
<template>
<if expr="chromeos">
<cr-settings-section i18n-values="page-title:internetPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="internet">
<cr-settings-internet-page current-route="{{currentRoute}}">
</cr-settings-internet-page>
</cr-settings-section>
</if>
<cr-settings-section i18n-values="page-title:appearancePageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="appearance">
<cr-settings-appearance-page prefs="{{prefs}}">
</cr-settings-appearance-page>
</cr-settings-section>
<cr-settings-section i18n-values="page-title:onStartup"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="on-startup">
<cr-settings-on-startup-page
prefs="{{prefs}}" current-route="{{currentRoute}}">
@@ -36,7 +37,7 @@
</cr-settings-section>
<cr-settings-section i18n-values="page-title:searchPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="search">
<cr-settings-search-page current-route="{{currentRoute}}">
</cr-settings-search-page>
@@ -44,7 +45,7 @@
<if expr="chromeos">
<cr-settings-section i18n-values="page-title:usersPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="users">
<cr-settings-users-page prefs="{{prefs}}"></cr-settings-users-page>
</cr-settings-section>

Powered by Google App Engine
This is Rietveld 408576698