summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/resources/options.html')
-rw-r--r--chrome/browser/resources/options.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/resources/options.html b/chrome/browser/resources/options.html
index d95b666..26d8534 100644
--- a/chrome/browser/resources/options.html
+++ b/chrome/browser/resources/options.html
@@ -42,7 +42,7 @@
*/
function load() {
localStrings = new LocalStrings();
-
+
if (cr.isChromeOS) {
OptionsPage.register(SystemOptions.getInstance());
OptionsPage.register(AccountsOptions.getInstance());
@@ -108,6 +108,7 @@ window.onpopstate = function(e) {
<link rel="stylesheet" href="options/chromeos_accounts_options_page.css">
<link rel="stylesheet" href="options/chromeos_language_options.css">
</if>
+<link rel="stylesheet" href="options/personal_options.css">
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div class="header">
@@ -145,9 +146,9 @@ window.onpopstate = function(e) {
</if>
<include src="options/browser_options.html">
<include src="options/personal_options.html">
+ <include src="options/sync_options.html">
<include src="options/advanced_options.html">
<include src="options/content_settings.html">
- <include src="options/sync_options.html">
</div>
</div>
@@ -155,6 +156,7 @@ window.onpopstate = function(e) {
// Decorate the existing elements in the document.
cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox);
cr.ui.decorate('input[pref][type=number]', PrefNumber);
+cr.ui.decorate('input[pref][type=radio]', PrefRadio);
cr.ui.decorate('input[pref][type=range]', PrefRange);
cr.ui.decorate('select[pref]', PrefSelect);
cr.ui.decorate('input[pref][type=url]', PrefTextField);