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

Unified Diff: chrome/browser/resources/help/help_page.js

Issue 2081873002: Incorporate comments in Dbus code and add Eol icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporate comments from isherman@ Created 4 years, 6 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
« no previous file with comments | « chrome/browser/resources/help/help_content.html ('k') | chrome/browser/ui/webui/help/help_browsertest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/help/help_page.js
diff --git a/chrome/browser/resources/help/help_page.js b/chrome/browser/resources/help/help_page.js
index 92d64655a0895eafb493193c780785aaae7778a1..9382a6864377363b90b341521b31dd36c35d14fe 100644
--- a/chrome/browser/resources/help/help_page.js
+++ b/chrome/browser/resources/help/help_page.js
@@ -84,6 +84,7 @@ cr.define('help', function() {
if (cr.isChromeOS) {
$('product-os-license').innerHTML =
loadTimeData.getString('productOsLicense');
+ $('eol-learnMore').innerHTML = loadTimeData.getString('eolLearnMore');
}
var productTOS = $('product-tos');
@@ -398,10 +399,10 @@ cr.define('help', function() {
// Show EndofLife Strings if applicable
if (eolStatus == 'device_supported') {
- $('eol-message').hidden = true;
+ $('eol-status-container').hidden = true;
} else if (eolStatus == 'device_endoflife') {
$('eol-message').innerHTML = eolMessage;
- $('eol-message').hidden = false;
+ $('eol-status-container').hidden = false;
}
« no previous file with comments | « chrome/browser/resources/help/help_content.html ('k') | chrome/browser/ui/webui/help/help_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698