CodeIgniter-AngularJS-App
CodeIgniter-AngularJS-App copied to clipboard
Sample App based on CodeIgniter and AngularJS
Hola! @drtuts has created a [ZenHub](http://www.zenhub.com) account for the **michalsn** organization. ZenHub is the only project management tool integrated natively in GitHub – created specifically for fast-moving, software-driven teams. ---...
Hi @michalsn , I am new to AngularJS and having experience in CI. I tried your project and listing is empty. I can see table titles, add, edit, delete buttons....
app.controller('EditCtrl',['$scope','$routeParams','$location','Project',function($scope,$routeParams,$location,Project){ var self = this; Project.get({id: $routeParams.id}, function(project) { console.log(project) self.original = project; $scope.project = new Project(self.original); }); $scope.isClean = function() { return angular.equals(self.original, $scope.project); }; $scope.destroy = function() {...