Add ko.utils.setHtml to KnockoutUtils interface (2 overloads total).

This commit is contained in:
Dan Ludwig
2013-02-07 13:01:28 -05:00
parent 893211ae45
commit 346034b63d
+2
View File
@@ -265,6 +265,8 @@ interface KnockoutUtils {
parseJson(jsonString: string): any;
stringifyJson(data: any, replacer: Function, space: string): string;
postJson(urlOrForm: any, data: any, options: any): void;
setHtml(node: Element, html: string): void;
setHtml(node: Element, html: () => string): void;
ieVersion: number;
isIe6: bool;