converse-desktop/app/controllers/about-controller.js
Keith Maika e2ae88894b
Update to Electron 16.
Application needed to be re-worked to not rely on nodeIntegration/contextIsolation for the upgrade to be possible.
2022-01-05 03:52:42 -05:00

10 lines
270 B
JavaScript

const angApp = (await import('../init.js')).default;
angApp.controller('AboutController', function($scope, AppStateService, AppInfo) {
$scope.appInfo = AppInfo
$scope.closeAbout = () => {
AppStateService.set(AppStateService.APP_STATE_DEFAULT)
}
})