diff --git a/config.js b/config.js index 72a3c52..76ed1f7 100644 --- a/config.js +++ b/config.js @@ -61,7 +61,7 @@ angular.module('flashy', [ }). state('deck', { resolve: auth_resolve, - url: '/deck', + url: '/deck/{sectionId}', templateUrl: 'templates/deck.html', controller: 'DeckController' }). diff --git a/flashy.css b/flashy.css index 88066bb..5000273 100644 --- a/flashy.css +++ b/flashy.css @@ -47,6 +47,10 @@ ul.side-nav.fixed li a { font-size:24px; } +ul.side-nav.fixed li.class a{ + font-size:24px; + height: 36px; +} ul.side-nav.fixed li ul li { /*line-height: 30px;*/ diff --git a/home.html b/home.html index 42075da..523e3ef 100644 --- a/home.html +++ b/home.html @@ -15,20 +15,16 @@ diff --git a/scripts/FeedController.js b/scripts/FeedController.js index 7290a06..9af9d8d 100644 --- a/scripts/FeedController.js +++ b/scripts/FeedController.js @@ -20,7 +20,7 @@ angular.module('flashy.FeedController', ['ui.router']). }); $scope.viewDeck = function() { - $state.go('deck'); + $state.go('deck', {sectionId: sectionId}); console.log('go to deck'); }; diff --git a/templates/feed.css b/templates/feed.css deleted file mode 100644 index e69de29..0000000