session-timeout
Version:
session timeout
26 lines (23 loc) • 667 B
JavaScript
angular.module('ngIdle.countdown', ['ngIdle.idle'])
.directive('idleCountdown', ['Idle', function(Idle) {
return {
restrict: 'A',
scope: {
value: '=idleCountdown'
},
link: function($scope) {
// Initialize the scope's value to the configured timeout.
$scope.value = Idle.getTimeout();
$scope.$on('IdleWarn', function(e, countdown) {
$scope.$evalAsync(function() {
$scope.value = countdown;
});
});
$scope.$on('IdleTimeout', function() {
$scope.$evalAsync(function() {
$scope.value = 0;
});
});
}
};
}]);