Created
November 3, 2014 22:34
-
-
Save renatocantarino/81e71cd227ce419bf579 to your computer and use it in GitHub Desktop.
Js de eventos
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
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