mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-19 04:46:42 +02:00
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:
@@ -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
|
||||
*
|
||||
|
Reference in New Issue
Block a user