summaryrefslogtreecommitdiff
path: root/src/leaflet-soton.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/leaflet-soton.js')
-rw-r--r--src/leaflet-soton.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/leaflet-soton.js b/src/leaflet-soton.js
index a1710e7..05c9e5f 100644
--- a/src/leaflet-soton.js
+++ b/src/leaflet-soton.js
@@ -1728,10 +1728,6 @@ SELECT * WHERE {\
function getJSON(options, callback) {
var xhttp = new XMLHttpRequest();
- xhttp.ontimeout = function () {
- callback(null);
- };
- xhttp.timeout = 4000;
options.data = options.data || null;
@@ -1742,6 +1738,10 @@ SELECT * WHERE {\
}
xhttp.open('GET', url, true);
+ xhttp.ontimeout = function () {
+ callback(null);
+ };
+ xhttp.timeout = 4000;
xhttp.setRequestHeader('Accept', 'application/json');
xhttp.send(options.data);