##// END OF EJS Templates
Corrected Scope.own() to cleanup the supplied object immediately when the scope is disposed already
Corrected Scope.own() to cleanup the supplied object immediately when the scope is disposed already

File last commit:

r107:e59104632d14 default
r131:c7d9ad82b374 v1.8.1 default
Show More
ProgressBar.tsx
18 lines | 596 B | text/x-typescript | TypeScriptLexer
import { djbase, djclass } from "@implab/djx/declare";
import { createElement } from "@implab/djx/tsx";
import { DjxWidgetBase } from "@implab/djx/tsx/DjxWidgetBase";
import "@implab/djx/css!./css/ProgressBar.css";
@djclass
export default class ProgressBar extends djbase(DjxWidgetBase) {
constructor(opts?: Partial<ProgressBar> & ThisType<ProgressBar>, refNode?: Node | string) {
super(opts, refNode);
}
render() {
return <div class="progress-bar">
<div class="progress-indicator"/>
<div class="progress-track"/>
</div>;
}
}