Created
June 1, 2014 01:02
-
-
Save renatocantarino/4a2fbe9c6d7d23810ec8 to your computer and use it in GitHub Desktop.
JS controller AngularJS
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
function ContatoController($scope) { | |
$scope.contatos = ["renato", "astrogildo"]; | |
$scope.adicionar = function() { | |
$scope.contatos.push($scope.novo); | |
$scope.novo = ""; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment