passman/js/app/controllers/main.js
2016-10-12 17:56:44 +02:00

35 lines
853 B
JavaScript

(function () {
'use strict';
/**
* @ngdoc function
* @name passmanApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the passmanApp
*/
angular.module('passmanApp')
.controller('MainCtrl', ['$scope', '$rootScope', '$location', function ($scope, $rootScope, $location) {
$scope.selectedVault = false;
$scope.http_warning_hidden = true;
if ($location.$$protocol === 'http' && $location.$$host !== 'localhost' && $location.$host !== '127.0.0.1') {
$scope.using_http = true;
$scope.http_warning_hidden = false;
}
$rootScope.setHttpWarning = function (state) {
$scope.http_warning_hidden = state;
};
$rootScope.$on('app_menu', function (evt, shown) {
$scope.app_sidebar = shown;
});
$rootScope.$on('logout', function () {
$scope.selectedVault = false;
});
}]);
}());