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

Unified Diff: lib/stats.js

Issue 16067002: Added Safari Support (Closed)
Patch Set: Rebased and changed icon to 16px (for Safari) and 19px again (for Chrome) Created Nov. 2, 2013, 5:50 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
Index: lib/stats.js
===================================================================
--- a/lib/stats.js
+++ b/lib/stats.js
@@ -40,7 +40,7 @@
return (key in Prefs.stats_total ? Prefs.stats_total[key] : 0);
};
-FilterNotifier.addListener(function(action, item, newValue, oldValue, tabId)
+FilterNotifier.addListener(function(action, item, newValue, oldValue, tab)
{
if (action != "filter.hitCount")
return;
@@ -56,7 +56,7 @@
Prefs.stats_total.blocked = 1;
Prefs.stats_total = Prefs.stats_total;
- let frameData = getFrameData(tabId, 0);
+ let frameData = getFrameData(tab, 0);
if (frameData)
{
if ("blocked" in frameData)

Powered by Google App Engine
This is Rietveld