web: remove return value from send_request

This commit is contained in:
Bryan Schumaker 2010-12-27 13:02:07 -05:00
parent 3c2f4ac147
commit 6fd7ea77a2
1 changed files with 0 additions and 1 deletions

View File

@ -35,5 +35,4 @@ function send_request(action)
var http = new XMLHttpRequest();
http.open('GET', "controls.py?a=" + action, true);
http.send();
return http;
}