1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

Improve google-analytics shim

Related issue:
- https://github.com/uBlockOrigin/uAssets/issues/11456
This commit is contained in:
Raymond Hill 2022-01-24 12:26:24 -05:00
parent 250cf96aae
commit fba680f9ab
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -76,15 +76,22 @@
if ( dl instanceof Object ) {
if ( dl.hide instanceof Object && typeof dl.hide.end === 'function' ) {
dl.hide.end();
dl.hide.end = ()=>{};
}
if ( typeof dl.push === 'function' ) {
const doCallback = function(item) {
if ( item instanceof Object === false ) { return; }
if ( typeof item.eventCallback !== 'function' ) { return; }
setTimeout(item.eventCallback, 1);
item.eventCallback = ()=>{};
};
dl.push = new Proxy(dl.push, {
apply: function(target, thisArg, args) {
doCallback(args[0]);
return Reflect.apply(target, thisArg, args);
}
});
if ( Array.isArray(dl) ) {
dl.push = item => doCallback(item);
const q = dl.slice();
for ( const item of q ) {
doCallback(item);