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

Unified Diff: chrome/content/ui/filters-filteractions.js

Issue 29338626: Issue 3835 - Update dependency on adblockpluscore to revision 2d4888611240 (Closed)
Patch Set: Fixed updateRequired replacement Created March 19, 2016, 6:57 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 | « chrome/content/ui/filters-backup.js ('k') | chrome/content/ui/filters-subscriptionactions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/content/ui/filters-filteractions.js
===================================================================
--- a/chrome/content/ui/filters-filteractions.js
+++ b/chrome/content/ui/filters-filteractions.js
@@ -361,17 +361,17 @@ var FilterActions =
if (item.filter instanceof ActiveFilter)
{
E("tooltip-hitcount").setAttribute("value", item.filter.hitCount)
E("tooltip-lasthit").setAttribute("value", Utils.formatTime(item.filter.lastHit))
}
E("tooltip-additional").hidden = false;
if (item.filter instanceof InvalidFilter && item.filter.reason)
- E("tooltip-additional").textContent = item.filter.reason;
+ E("tooltip-additional").textContent = Utils.getString(item.filter.reason);
else if (item.filter instanceof RegExpFilter && defaultMatcher.isSlowFilter(item.filter))
E("tooltip-additional").textContent = Utils.getString("filter_regexp_tooltip");
else
E("tooltip-additional").hidden = true;
},
/**
* Called whenever a key is pressed on the list.
« no previous file with comments | « chrome/content/ui/filters-backup.js ('k') | chrome/content/ui/filters-subscriptionactions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld