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

Unified Diff: chrome/browser/resources/chromeos/diagnostics/main.js

Issue 11746032: Use full image URLs for icons in diagnostics UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/diagnostics/main.js
diff --git a/chrome/browser/resources/chromeos/diagnostics/main.js b/chrome/browser/resources/chromeos/diagnostics/main.js
index f26aecc42a7d72b2b744297a51ec4c1c8ca961c9..11ceac692c632ff7109026c5712263fc613e61df 100644
--- a/chrome/browser/resources/chromeos/diagnostics/main.js
+++ b/chrome/browser/resources/chromeos/diagnostics/main.js
@@ -63,8 +63,8 @@ cr.define('diag', function() {
*/
DiagPage.FailIconElement = document.createElement('img');
DiagPage.TickIconElement = document.createElement('img');
- DiagPage.FailIconElement.setAttribute('src', 'fail.png');
- DiagPage.TickIconElement.setAttribute('src', 'tick.png');
+ DiagPage.FailIconElement.setAttribute('src', 'chrome://diagnostics/fail.png');
+ DiagPage.TickIconElement.setAttribute('src', 'chrome://diagnostics/tick.png');
DiagPage.prototype = {
/**
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698