ApplicationManager and better memory management

This commit is contained in:
Mo Bitar
2020-03-23 19:59:55 -05:00
parent 7dc3dab90b
commit ee7cb1fce6
55 changed files with 36786 additions and 3046 deletions

View File

@@ -5,12 +5,9 @@ import { PureCtrl } from '@Controllers';
class EditorMenuCtrl extends PureCtrl {
/* @ngInject */
constructor(
$scope,
$timeout,
application,
appState
) {
super($scope, $timeout, application, appState);
super($timeout);
this.state = {
isDesktop: isDesktopApplication()
};
@@ -98,7 +95,8 @@ export class EditorMenu {
this.scope = {
callback: '&',
selectedEditor: '=',
currentItem: '='
currentItem: '=',
application: '='
};
}
}