11'use strict' ;
22var app = angular . module ( 'angularFromScratch' , [
3- 'ngSanitize'
4- ] ) ;
5-
6- app . controller ( 'PrincipalCtrl' , [ '$scope' , function ( $scope ) {
7- this . tituloApp = 'Hola AngularJS' ;
8- } ] ) ;
9-
10- app . controller ( 'ContactosCtrl' , [ '$scope' , function ( $scope ) {
11- this . perfilActivo = - 1 ;
12-
13- this . contactosArray = [
14- { nombre : 'Axel' , apellido : 'Salmeron' , contacto : '@axulsr' ,
15- icon : '<span class="glyphicon glyphicon-user"></span>' ,
16- thumb :'' } ,
17-
18-
19- { nombre : 'Guillermo' , apellido : 'Seminario' , contacto : '@gjseminario' ,
20- icon : '<span class="glyphicon glyphicon-user"></span>' ,
21- thumb :'' } ,
22-
23- { nombre : 'Alexander' , apellido : 'Rondón' , contacto : '@arondn2' ,
24- icon : '<span class="glyphicon glyphicon-user"></span>' ,
25- thumb :'' } ,
26-
27- { nombre : 'José' , apellido : 'Salazar' , contacto : '@jslzrt' ,
28- icon : '<span class="glyphicon glyphicon-user"></span>' ,
29- thumb :'' } ,
30-
31- { nombre : 'Marlys' , apellido : 'Villafranca' , contacto : '@MarlysitaV' ,
32- icon : '<span class="glyphicon glyphicon-user"></span>' ,
33- thumb :'' } ,
34-
35- { nombre : 'Katrina' , apellido : 'Ortiz' , contacto : '@KatrinaOrtiz' ,
36- icon : '<span class="glyphicon glyphicon-user"></span>' ,
37- thumb :'' }
38- ] ;
39-
40- this . mostrarPerfil = function ( indice ) {
41- this . perfilActivo = indice ;
42- } ;
43-
44- this . isPerfilActivo = function ( ) {
45- return ( this . perfilActivo == - 1 ) ? false : true ;
46- } ;
47- } ] ) ;
48-
49- app . controller ( 'PerfilCtrl' , [ '$scope' , function ( $scope ) {
50- this . perfil = '' ;
51- } ] ) ;
3+ 'ngSanitize' ,
4+ 'app.controladores'
5+ ] ) ;
0 commit comments