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

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

Issue 10010019: JS style nits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/certificate_viewer.js
diff --git a/chrome/browser/resources/certificate_viewer.js b/chrome/browser/resources/certificate_viewer.js
index 315552198177acda9f374ce2245b4180d5a2db55..abe873fa868aa43c830db342d002d292ef1ab9de 100644
--- a/chrome/browser/resources/certificate_viewer.js
+++ b/chrome/browser/resources/certificate_viewer.js
@@ -42,7 +42,7 @@ cr.define('cert_viewer', function() {
/**
* The tab name strings in the languages file have accessor keys indicated
* by a preceding & sign. Strip these out for now.
- * @TODO(flackr) These accessor keys could be implemented with Javascript or
+ * TODO(flackr) These accessor keys could be implemented with Javascript or
* translated strings could be added / modified to remove the & sign.
*/
function stripGtkAccessorKeys() {
@@ -50,7 +50,7 @@ cr.define('cert_viewer', function() {
var nodes = Array.prototype.slice.call($('tabs').childNodes, 0);
nodes.push($('export'));
for (var i = 0; i < nodes.length; i++)
- nodes[i].textContent = nodes[i].textContent.replace('&','');
+ nodes[i].textContent = nodes[i].textContent.replace('&', '');
}
/**

Powered by Google App Engine
This is Rietveld 408576698