##// END OF EJS Templates
Fixes in WidgetContex, added _Container.addChild support
Fixes in WidgetContex, added _Container.addChild support

File last commit:

r38:5c6c7e16919c v1.0.0-rc18 default
r38:5c6c7e16919c v1.0.0-rc18 default
Show More
DjxFragment.ts
17 lines | 476 B | video/mp2t | TypeScriptLexer
import { _Widget } from "./WidgetContext";
import { MapOf } from "@implab/core-amd/interfaces";
import { prototype } from "../declare";
/** Special widget used to create a document fragment */
export class DjxFragment implements _Widget {
domNode: Node;
containerNode?: Node;
constructor() {
this.domNode = this.containerNode = document.createDocumentFragment();
}
buildRendering() {
// this function marks this class as _Widget
}
}