Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1.  
  2.  
  3. angular
  4. .module('ngCribs')
  5. .controller('cribsController', function($scope, cribsFactory)
  6. {
  7.  
  8.  
  9. $scope.cribs = {};
  10.  
  11. cribsFactory.getCribs().then(function(data)
  12.  
  13. {
  14. $scope.cribs = data;
  15.  
  16. },function(error)
  17. {
  18. console.log(error);
  19. });
  20.  
  21. $scope.sayHello=function()
  22. {
  23. console.log("Hello");
  24. }
  25.  
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement