Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var myApp = angular.module('myApp', ['mainControllers']);
  2.  
  3. mainControllers.controller('mainController', ['$scope', function ( $scope) {
  4. $scope.init = function () {
  5. alert('I am initialized');
  6. };
  7. $scope.click = function () {
  8. alert('I am clicked');
  9. };
  10.  
  11. }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement