Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var app = angular.module('myApp', []);
  2.  
  3.  
  4. function Ctrl1($scope) {
  5.  
  6. $scope.toto = function(){
  7. alert('toto');
  8. };
  9.  
  10. $scope.titi = function(){
  11. alert('titi');
  12. };
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement