public/js_test_server.js in js-test-server-0.2.6 vs public/js_test_server.js in js-test-server-0.2.7
- old
+ new
@@ -1,10 +1,8 @@
(function() {
function JsTestServer() {
}
-
- ;
window.JsTestServer = JsTestServer;
JsTestServer.status = function() {
throw "You must implement the JsTestServer.status method";
};
@@ -18,10 +16,9 @@
function tag(name, attributes) {
var html = "<" + name;
for (var attribute in attributes) {
html += (" " + attribute + "='" + attributes[attribute]) + "'";
}
- ;
html += "></";
html += name;
html += ">";
return html;
}