wazuh-kibana-app/public/controllers/agentsFim.js
2017-01-16 10:28:26 -08:00

15 lines
426 B
JavaScript

// Require config
var app = require('ui/modules').get('app/wazuh', []);
app.controller('fimController', function ($scope, $q, DataFactory, $mdToast, errlog) {
$scope._fimEvent = 'all'
//Print error
var printError = function (error) {
$mdToast.show({
template: '<md-toast>' + error.html + '</md-toast>',
position: 'bottom left',
hideDelay: 5000,
});
};
});