(function() {

voxality.controller('NotificationsController', ['$scope', '$timeout', function($scope, $timeout) {
  $scope.showNotifications = true;

  $timeout(function() {
    $scope.showNotifications = false;
  }, 3000);
}]);

}).call(this);