ProximaNova / Booru-mass-editor

Quickly edit images at websites running Gelbooru Beta 0.1.11 (such as http://booru.org)
7 stars 2 forks source link

pages closing with bad timing #21

Open ProximaNova opened 5 years ago

ProximaNova commented 5 years ago

wait for load check for flag (if exists, close) start a timer change form action submit form

ProximaNova commented 5 years ago

This does not force a page to return 504:

<!DOCTYPE html>
<html>
<body>

<p id="demo"></p>

<script>
var text = "";
for (i = 0; i < 50; i++) {
  var j = i+4000050;
  text += "var testtest"+i+" = document.createElement('iframe');"+
  "<br>testtest"+i+".setAttribute('src', 'https://gelbooru.com"+
  "/index.php?page=post&s=view&id="+j+"');"+
  "<br>testtest"+i+".setAttribute('width', '600');"+
  "<br>testtest"+i+".setAttribute('height', '600');"+
  "<br>someURLs.appendChild(testtest"+i+");<br><br>";
  }
document.getElementById("demo").innerHTML = text;
</script>

</body>
</html>