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

17 lines
382 B
JavaScript
Raw Normal View History

'use strict';
var StatusDisplayCtrl = function($scope, statusDisplay) {
// set the show functions
2014-11-21 07:33:22 -05:00
statusDisplay.showStatus = function(lbl, time) {
$scope.lastUpdateLbl = lbl;
$scope.lastUpdate = (time) ? time : '';
2014-11-21 07:33:22 -05:00
};
2014-11-21 07:33:22 -05:00
statusDisplay.showSearching = function(state) {
$scope.searching = state;
2014-11-21 07:33:22 -05:00
};
};
module.exports = StatusDisplayCtrl;