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

Unified Diff: chrome/browser/resources/chromeos/network_ui/network_ui.js

Issue 2627353003: Settings/Oobe: Simplify cr-network-select and use flex (Closed)
Patch Set: Add comment Created 3 years, 11 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/chromeos/network_ui/network_ui.js
diff --git a/chrome/browser/resources/chromeos/network_ui/network_ui.js b/chrome/browser/resources/chromeos/network_ui/network_ui.js
index 7b31697eacdf965501bc8f801c745716f8982248..347b7be46a657dda44024072026abfd1e66a37e0 100644
--- a/chrome/browser/resources/chromeos/network_ui/network_ui.js
+++ b/chrome/browser/resources/chromeos/network_ui/network_ui.js
@@ -319,7 +319,7 @@ var NetworkUI = (function() {
var requestGlobalPolicy = function() {
chrome.networkingPrivate.getGlobalPolicy(function(policy) {
document.querySelector('#global-policy').textContent =
- JSON.stringify(policy);
+ JSON.stringify(policy, null, '\t');
});
};

Powered by Google App Engine
This is Rietveld 408576698