1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/controller/app/status-display.js

16 lines
320 B
JavaScript
Raw Normal View History

'use strict';
var StatusDisplayCtrl = function($scope) {
$scope.$on('status', function(e, text, time) {
$scope.text = text;
$scope.time = (time) ? time : '';
});
$scope.$on('searching', function(e, state) {
$scope.searching = state;
});
};
module.exports = StatusDisplayCtrl;