View difference between Paste ID: ffdmBZGH and qs84G46R
SHOW: | | - or go back to the newest paste.
1
(function() {
2
  var a = Date.now() + 3000;
3
  var b = setInterval(function () {
4
    if (Date.now() > a) {
5
      clearInterval(b);
6-
      location.reload();
6+
      document.location.reload();
7
    }
8
  }, 1000);
9
})();