DjxFragment.ts
24 lines
| 586 B
| video/mp2t
|
TypeScriptLexer
cin
|
r19 | import { _Widget } from "./WidgetContext"; | |
import { MapOf } from "@implab/core-amd/interfaces"; | |||
cin
|
r24 | import { prototype } from "../declare"; | |
cin
|
r19 | ||
/** Special widget used to create a document fragment */ | |||
export class DjxFragment implements _Widget { | |||
cin
|
r24 | @prototype() | |
cin
|
r19 | domNode: Node; | |
containerNode?: Node; | |||
constructor() { | |||
this.domNode = this.containerNode = document.createDocumentFragment(); | |||
} | |||
get(attr: string) { | |||
return undefined; | |||
} | |||
set(attr: string, value: any): void; | |||
set(attrs: MapOf<any>): void; | |||
set() { | |||
/* do nothing */ | |||
} | |||
} |