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

Unified Diff: background.js

Issue 29544706: Noissue - Adapt check for devtools panel support for Firefox (Closed)
Patch Set: Use Services.vc.compare() Created Sept. 15, 2017, 4:49 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 | messageResponder.js » ('j') | messageResponder.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: background.js
===================================================================
--- a/background.js
+++ b/background.js
@@ -445,12 +445,19 @@
}
});
- window.Services = {
Sebastian Noack 2017/09/15 16:51:47 This has been dead code. There is no global Servic
- vc: {
- compare(v1, v2)
- {
- return parseFloat(v1) - parseFloat(v2);
- }
+ window.Cu = {
+ import()
+ {
+ return {
+ Services: {
+ vc: {
+ compare(v1, v2)
+ {
+ return parseFloat(v1) - parseFloat(v2);
+ }
+ }
+ }
+ };
}
};
« no previous file with comments | « no previous file | messageResponder.js » ('j') | messageResponder.js » ('J')

Powered by Google App Engine
This is Rietveld