This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bz = this; | |
/* dentro del controlador usamos un onInit y creamos el array que contendra los valores | |
para que el ng repeat pueda renderizar los inputs y los 2 unicos metodos necesarios para que funcione */ | |
bz.$onInit = () => { | |
$scope.datesList = [new Date()]; | |
}; | |
/*recibimos el valor del input (item) comprobamos que exista, y hacemos un push al array */ |