Sin descripción

error.js 742B

12345678910111213141516171819202122
  1. var error = angular.module('error', ['ngSanitize']);
  2. // Define the `PhoneListController` controller on the `phonecatApp` module
  3. // error.controller('ErrorController', function ErrorController($http, $scope, tipo, id) {
  4. error.controller('ErrorController', function ErrorController(tipo, opcion) {
  5. console.log(tipo);
  6. // $window.location.href = '/index';
  7. // var url = '/formaDatos/'+accion+'/'+tipo+'/'
  8. // if(id!="none")
  9. // {
  10. // url+= id;
  11. // }
  12. // $http.get(url).then(function(response) {
  13. // $scope.entradas = response.data.entradas;
  14. // $scope.titulo = response.data.titulo;
  15. // $scope.accion = response.data.accion;
  16. // // $scope.selectedForm=
  17. // console.log(response.data);
  18. // });
  19. });