From 6fd7ea77a2a67da1fb4e3725ceb2b227ca7c12db Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Mon, 27 Dec 2010 13:02:07 -0500 Subject: [PATCH] web: remove return value from send_request --- html/utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/html/utils.js b/html/utils.js index 4a9eb494..28ec991e 100644 --- a/html/utils.js +++ b/html/utils.js @@ -35,5 +35,4 @@ function send_request(action) var http = new XMLHttpRequest(); http.open('GET', "controls.py?a=" + action, true); http.send(); - return http; }