Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | function handleRequest(request, response) |
michael@0 | 2 | { |
michael@0 | 3 | response.setStatusLine(request.httpVersion, 200, "OK"); |
michael@0 | 4 | response.setHeader("Access-Control-Allow-Origin", "*"); |
michael@0 | 5 | response.write("<html><body>hello!</body></html>"); |
michael@0 | 6 | } |