refactroring WIP

This commit is contained in:
zadam
2020-01-16 22:44:36 +01:00
parent 0178232f26
commit 97b13ae91d
6 changed files with 33 additions and 102 deletions

View File

@@ -1,11 +1,11 @@
import BasicWidget from "./basic_widget.js";
export default class TabAwareWidget extends BasicWidget {
constructor(appContext) {
constructor(appContext, tabContext = null) {
super(appContext);
/** @var {TabContext} */
this.tabContext = null;
this.tabContext = tabContext;
}
// to override