Advertisement
Guest User

Files

a guest
Mar 20th, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. controllers.js:
  2.  
  3. angular.module('restaurantApp.controllers', []).controller('allAppCtrl', ['$scope', 'appApi', function($scope, appApi) {
  4.  
  5. $scope.data = appApi.getData();
  6. $scope.newData = {
  7. "fName": "Taco Bell",
  8. "id": 2
  9. };
  10.  
  11. $scope.add = function() {
  12. appApi.addData($scope.newData);
  13. }
  14. }]);
  15.  
  16. _____________________________________________________________________________________________________________________
  17. menu.html:
  18.  
  19. <button class="button button-icon icon ion-android-add" ng-click = "add()"></button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement