1
0
Fork 0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-07-04 20:46:39 +02:00

Protection for history.length did not work

Fixes #309
This commit is contained in:
kkapsner 2019-02-04 13:40:44 +01:00
parent eb83002917
commit 1bb5013a39
2 changed files with 4 additions and 5 deletions

View file

@ -43,7 +43,9 @@
function getStatus(obj, status){
return Object.create(status);
status = Object.create(status);
status.active = true;
return status;
}
scope.changedGetters.forEach(function(changedGetter){