Skip to content

Instantly share code, notes, and snippets.

@itswadesh
Last active March 27, 2017 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itswadesh/76c7b7c307dff6f469f1e402d2718fad to your computer and use it in GitHub Desktop.
Save itswadesh/76c7b7c307dff6f469f1e402d2718fad to your computer and use it in GitHub Desktop.
app = angular.module('app', []);
app.controller("NavCtrl",function($scope,$http){
var serviceBase = 'api/v1/';
$http.get(serviceBase + 'categories').then(function (results) {
$scope.categories = results.data;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment