1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-27 02:20:50 +12:00

to catch slow popups

This commit is contained in:
gorhill 2015-03-22 13:29:04 -04:00
parent 49f6504f58
commit 607c977da2

View file

@ -102,7 +102,7 @@ vAPI.tabs.registerListeners = function() {
if ( this.selfDestructionTimer !== null ) {
clearTimeout(this.selfDestructionTimer);
}
this.selfDestructionTimer = setTimeout(this.selfDestruct.bind(this), 1000);
this.selfDestructionTimer = setTimeout(this.selfDestruct.bind(this), 10000);
};
var popupCandidateCreate = function(details) {