Merge pull request #573 from fsoikin/KO-virtual-elements

Added ko.virtualElements.childNodes
This commit is contained in:
Boris Yankov
2013-05-24 05:37:33 -07:00
+1
View File
@@ -234,6 +234,7 @@ interface KnockoutVirtualElements {
nextSibling( e: KnockoutVirtualElement );
prepend( e: KnockoutVirtualElement, toInsert: HTMLElement );
setDomNodeChildren( e: KnockoutVirtualElement, newChildren: { length: number;[index: number]: HTMLElement; } );
childNodes( e: KnockoutVirtualElement ): HTMLElement[];
}
interface KnockoutExtenders {