Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: background.js

Issue 5121634776121344: Issue 2049 - Wrong logo being displayed in Options and Block Element dialog (Closed)
Patch Set: Removed redundant descriptors Created Feb. 27, 2015, 6:45 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | block.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: background.js
===================================================================
--- a/background.js
+++ b/background.js
@@ -359,17 +359,17 @@ function showNotification(notification)
return;
activeNotification = notification;
if (activeNotification.type === "critical" || activeNotification.type === "question")
{
var texts = NotificationStorage.getLocalizedTexts(notification);
var title = texts.title || "";
var message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : "";
- var iconUrl = ext.getURL("icons/abp-128.png");
+ var iconUrl = ext.getURL("icons/detailed/abp-128.png");
var hasLinks = activeNotification.links && activeNotification.links.length > 0;
if (canUseChromeNotifications)
{
var opts = {
type: "basic",
title: title,
message: message,
« no previous file with comments | « no previous file | block.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld