added html and css editors
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { BaseElement } from "../../../shared/_base";
|
||||
import { WindowControlConnector } from "./window-control connector";
|
||||
|
||||
export class WindowControl extends BaseElement {
|
||||
|
||||
setActive(element: WindowControlConnector) {
|
||||
for (let i = 0; i < this.children.length; i++) {
|
||||
const child = <WindowControlConnector>this.children[i];
|
||||
|
||||
if (element == child) {
|
||||
child.activate();
|
||||
}
|
||||
else {
|
||||
child.deactivate();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user