Fix favourites (& probably some more inherited stuff) broken by TypeScript conversion

Note that any properties declared in a sub-class aren't generally available until after the super() call is done, i.e. in the super constructor they're undefined.
This commit is contained in:
nathangray
2020-03-20 11:38:38 -06:00
parent 7631eb83aa
commit 34ec346821
16 changed files with 58 additions and 71 deletions

View File

@@ -43,10 +43,9 @@ var AdminApp = /** @class */ (function (_super) {
* @memberOf app.classes.admin
*/
function AdminApp() {
var _this =
// call parent
_super.call(this) || this;
_this.appname = 'admin';
var _this =
// call parent
_super.call(this, 'admin') || this;
/**
* reference to iframe
*