瀏覽代碼

Implemented controller for querying top contributed data from Django JSON Response

David Leonard 10 年之前
父節點
當前提交
458f0c2396
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. 10 0
      angular/scripts/controllers/githubTopContributionsController.js

+ 10 - 0
angular/scripts/controllers/githubTopContributionsController.js

@@ -0,0 +1,10 @@
+'use strict';
+
+restApp.controller('githubTopContributionsController', function($scope, githubTopContributionsFactory) {
+    $scope.githubTopContributions = {};
+    
+    $scope.githubTopContributions = githubTopContributionsFactory.get().success(function(data) {
+    	$scope.githubTopContributions = data;
+    	console.log(data);
+    });
+});