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

Unified Diff: options.js

Issue 29391717: Issue 5023 - Update adblockplusui dependency to 8ceaabb9c639 (Closed)
Patch Set: Created March 22, 2017, 8:55 a.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 | « dependencies ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: options.js
===================================================================
--- a/options.js
+++ b/options.js
@@ -432,17 +432,17 @@
if (downloadStatus in map)
lastUpdate.textContent = i18n.getMessage(map[downloadStatus]);
else
lastUpdate.textContent = downloadStatus;
lastUpdate.classList.add("error");
}
else if (subscription.lastDownload > 0)
{
- let timeDate = i18n_timeDateStrings(subscription.lastDownload * 1000);
+ let timeDate = i18nTimeDateStrings(subscription.lastDownload * 1000);
let messageID = (timeDate[1] ? "last_updated_at" : "last_updated_at_today");
lastUpdate.textContent = i18n.getMessage(messageID, timeDate);
}
}
function onSubscriptionMessage(action, subscription)
{
let element = findSubscriptionElement(subscription);
« no previous file with comments | « dependencies ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld