Created
November 4, 2014 11:45
-
-
Save renatocantarino/e2b1746fc4de8f117b4c to your computer and use it in GitHub Desktop.
This file contains 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
angular.module('changeExample', []) | |
.controller('ExampleController', ['$scope', function($scope) { | |
$scope.eventos = {}; | |
$scope.eventos.change = function() { | |
alert("evento change disparado.") | |
}; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment