Update build

This commit is contained in:
Kegan Myers 2014-03-03 19:10:13 -06:00
parent a1bf9bc4d5
commit a7ce48782c
2 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ var Typertext;
};
HttpRequest.prototype.Post = function (request, postData, callback) {
this.RawRequest(0 /* GET */, request, postData, callback);
this.RawRequest(1 /* POST */, request, postData, callback);
};
HttpRequest.prototype.RawRequest = function (method, request, postData, callback) {
@ -323,7 +323,7 @@ var Typertext;
};
JsonRequest.prototype.Post = function (request, postData, callback) {
this.RawRequest(0 /* GET */, request, postData, callback);
this.RawRequest(1 /* POST */, request, postData, callback);
};
JsonRequest.prototype.RawRequest = function (method, request, postData, callback) {

File diff suppressed because one or more lines are too long