mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
9 lines
272 B
JavaScript
9 lines
272 B
JavaScript
angular
|
|
.module('bit.settings')
|
|
|
|
.controller('settingsAboutController', function ($scope, i18nService) {
|
|
$scope.i18n = i18nService;
|
|
$scope.year = (new Date()).getFullYear();
|
|
$scope.version = chrome.runtime.getManifest().version;
|
|
});
|