@@ -3,35 +3,13 @@ angular.module('app.controladores', [])
33. controller ( 'PrincipalCtrl' , [ '$scope' , function ( $scope ) {
44
55} ] )
6- . controller ( 'ContactosCtrl' , [ '$scope' , '$rootScope' , function ( $scope , $rootScope ) {
6+ . controller ( 'ContactosCtrl' , [ '$scope' , '$rootScope' , '$http' , function ( $scope , $rootScope , $http ) {
77 this . perfilActivo = - 1 ;
88 $rootScope . globales . seccionActual = 'Contactos' ;
9- this . contactosArray = [
10- { nombre : 'Axel' , apellido : 'Salmeron' , contacto : '@axulsr' ,
11- icon : '<span class="glyphicon glyphicon-user"></span>' ,
12- thumb :'' } ,
139
14-
15- { nombre : 'Guillermo' , apellido : 'Seminario' , contacto : '@gjseminario' ,
16- icon : '<span class="glyphicon glyphicon-user"></span>' ,
17- thumb :'' } ,
18-
19- { nombre : 'Alexander' , apellido : 'Rondón' , contacto : '@arondn2' ,
20- icon : '<span class="glyphicon glyphicon-user"></span>' ,
21- thumb :'' } ,
22-
23- { nombre : 'José' , apellido : 'Salazar' , contacto : '@jslzrt' ,
24- icon : '<span class="glyphicon glyphicon-user"></span>' ,
25- thumb :'' } ,
26-
27- { nombre : 'Marlys' , apellido : 'Villafranca' , contacto : '@MarlysitaV' ,
28- icon : '<span class="glyphicon glyphicon-user"></span>' ,
29- thumb :'' } ,
30-
31- { nombre : 'Katrina' , apellido : 'Ortiz' , contacto : '@KatrinaOrtiz' ,
32- icon : '<span class="glyphicon glyphicon-user"></span>' ,
33- thumb :'' }
34- ] ;
10+ $http . get ( 'data/contactos.json' ) . success ( function ( data ) {
11+ $scope . contactosArray = data ;
12+ } ) ;
3513
3614 this . mostrarPerfil = function ( indice ) {
3715 this . perfilActivo = indice ;
0 commit comments