bansho/app/tactical/tactical-controller.js
2014-12-16 18:21:32 -05:00

18 lines
468 B
JavaScript

tactical_app.controller('TacticalCtrl', ['$scope', '$http',
function($scope, $http) {
$scope.toto = "pl";
/* $http.get('/core/config').success(function(data) {
$scope.config = data;
});
$scope.save = function(config) {
$http.post('/core/config', config).success(function(data) {
messageCenterService.add(data.state, data.message);
});
}
*/
}]);