all repos — honk @ c522291926203915fbf1285eb1f906d51d3f48c0

my fork of honk

real timeout should be a bit longer
Ted Unangst tedu@tedunangst.com
Fri, 01 Apr 2022 15:45:02 -0400
commit

c522291926203915fbf1285eb1f906d51d3f48c0

parent

159f35ee3e7d4894ba04d51c6e415dd417d04014

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M views/honkpage.jsviews/honkpage.js

@@ -16,7 +16,7 @@ }

function get(url, whendone, whentimedout) { var x = new XMLHttpRequest() x.open("GET", url) - x.timeout = 5 * 1000 + x.timeout = 15 * 1000 x.responseType = "json" x.onload = function() { whendone(x) } if (whentimedout) {