18 lines
468 B
JavaScript
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);
|
|
});
|
|
}
|
|
*/
|
|
}]);
|