Skip to content

Instantly share code, notes, and snippets.

@renatocantarino
Created November 4, 2014 11:45
Show Gist options
  • Save renatocantarino/e2b1746fc4de8f117b4c to your computer and use it in GitHub Desktop.
Save renatocantarino/e2b1746fc4de8f117b4c to your computer and use it in GitHub Desktop.
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