diff --git a/views/honkpage.js b/views/honkpage.js index 3ce86d3..f0283e3 100644 --- a/views/honkpage.js +++ b/views/honkpage.js @@ -16,7 +16,7 @@ function post(url, data) { 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) {