Update build artifacts

This commit is contained in:
Kegan Myers 2014-02-26 15:58:45 -06:00
parent 7823091ed9
commit 534259f3a2
2 changed files with 4 additions and 7 deletions

View file

@ -106,13 +106,10 @@ declare module Typertext.Http {
static FromUrl(location: string): HttpUrl; static FromUrl(location: string): HttpUrl;
static DecodeQueryString(queryString: string): HttpQueryString; static DecodeQueryString(queryString: string): HttpQueryString;
static EncodeQueryString(query: HttpQueryString): string; static EncodeQueryString(query: HttpQueryString): string;
static URLEncodeObject(data: { static UrlEncodeObject(data: HttpQueryString): string;
[index: string]: string; static UrlDecodeString(queryString: string): HttpQueryString;
}): string;
private static splitString(input, separator, limit?); private static splitString(input, separator, limit?);
constructor(domain: string, protocol?: HttpProtocol, path?: string, queryString?: { constructor(domain: string, protocol?: HttpProtocol, path?: string, queryString?: HttpQueryString, port?: number);
[index: string]: string;
}, port?: number);
public ToString(): string; public ToString(): string;
} }
} }

View file

@ -160,7 +160,7 @@ var Typertext;
} }
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send(Typertext.Http.HttpUrl.URLEncodeObject(postData)); xhr.send(Typertext.Http.HttpUrl.UrlEncodeObject(postData));
}; };
return HttpRequest; return HttpRequest;
})(); })();