controller.js 480 Bytes
angular.module('focaBotoneraPrincipal')
    .controller('focaBotoneraPrincipalController', [
        '$scope', '$location', 'botones',
        function($scope, $location, botones) {
            $scope.paginas = [];
            $scope.paginas.push(botones.data);

            $scope.irA = function(accion) {
                $location.path(accion);
            };

            $scope.logout = function() {
                $location.path('/logout');
            };
        }
    ]);