瀏覽代碼

Wiring Angular route for top contributed repositories on Github

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

+ 9 - 0
angular/scripts/app.js

@@ -22,4 +22,13 @@ var restApp = angular.module('restApp', [
                 pageTitle: 'Github User Data'
             }
         });
+
+        .state('githubTopContributions', {
+            url: '/githubTopContributions',
+            templateUrl: 'partials/githubTopContributions.partial.html',
+            controller: 'githubTopContributionsController',
+            data: {
+                pageTitle: 'Top Contributions on Github'
+            }
+        });
 });