Skip to content

Instantly share code, notes, and snippets.

@renatocantarino
Created November 3, 2014 22:34
Show Gist options
  • Save renatocantarino/81e71cd227ce419bf579 to your computer and use it in GitHub Desktop.
Save renatocantarino/81e71cd227ce419bf579 to your computer and use it in GitHub Desktop.
Js de eventos
angular.module("myapp", [])
.controller("MyController", function($scope) {
$scope.eventos = {};
$scope.eventos.Clique = function()
{
alert("evento clique");
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment