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

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

Issue 10824214: chrome UI: change UI string "Last Updated" to "Build Date". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Forgot to update the corresponding CSS file. Created 8 years, 4 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.html ('k') | chrome/browser/ui/webui/help/help_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/help/help.js
diff --git a/chrome/browser/resources/help/help.js b/chrome/browser/resources/help/help.js
index ba609bc0e7b4562cde6d8b57028165a64330be04..44d8f9d226f39f1dbb9a7433dcc22bd0d18a9958 100644
--- a/chrome/browser/resources/help/help.js
+++ b/chrome/browser/resources/help/help.js
@@ -230,13 +230,13 @@ cr.define('help', function() {
},
/**
- * Sets the value of the "Last Updated" field of the "More Info" section.
- * @param {String} lastUpdated The date of the last update.
+ * Sets the value of the "Build Date" field of the "More Info" section.
+ * @param {String} buildDate The date of the build.
* @private
*/
- setLastUpdated_: function(lastUpdated) {
- $('last-updated-container').classList.remove('empty');
- $('last-updated').textContent = lastUpdated;
+ setBuildDate_: function(buildDate) {
+ $('build-date-container').classList.remove('empty');
+ $('build-date').textContent = buildDate;
},
};
@@ -280,8 +280,8 @@ cr.define('help', function() {
HelpPage.getInstance().setReleaseChannel_(channel);
};
- HelpPage.setLastUpdated = function(lastUpdated) {
- HelpPage.getInstance().setLastUpdated_(lastUpdated);
+ HelpPage.setBuildDate = function(buildDate) {
+ HelpPage.getInstance().setBuildDate_(buildDate);
}
// Export
« no previous file with comments | « chrome/browser/resources/help/help.html ('k') | chrome/browser/ui/webui/help/help_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698