Преглед на файлове

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