RTCMultiConnection icon indicating copy to clipboard operation
RTCMultiConnection copied to clipboard

hark.js override window.setInterval function

Open MasterShi opened this issue 3 years ago • 2 comments

hark.js see below: line 8: var harker = this; //this == window line 62: harker.setInterval = function (i) { interval = i; };

MasterShi avatar Dec 17 '20 07:12 MasterShi

I confirm the problem, how can it be solved?

DamianoP avatar Jan 16 '21 21:01 DamianoP

What about this solution: Change var harker = this; To var harker = Object.create(this);

DamianoP avatar Jan 16 '21 21:01 DamianoP