##// END OF EJS Templates
Added tag v1.0.10 for changeset d4f0cdae9577
Added tag v1.0.10 for changeset d4f0cdae9577

File last commit:

r59:bcdd096122ff default
r61:a5ead1578dfc default
Show More
DjxFragment.ts
17 lines | 475 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
}
}