1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-01 18:10:17 +12:00

Firefox: implement vAPI.storage via SQLite

This commit is contained in:
Deathamns 2014-11-27 20:45:54 +01:00 committed by gorhill
parent 24163694f4
commit 3b5826fe75

View file

@ -4,7 +4,7 @@
'use strict';
var
let
appName = 'ublock',
contentBaseURI = 'chrome://' + appName + '/content/js/',
listeners = {},
@ -25,7 +25,7 @@ var
addMessageListener('µBlock:broadcast', function(msg) {
for (var id in listeners) {
listeners[id](msg.data);
listeners[id](msg);
}
});