소스 검색

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'
+            }
+        });
 });