bookmarklet for next unread item

This commit is contained in:
Athou
2013-05-19 16:24:56 +02:00
parent fb1df96d29
commit eb198b74b0
8 changed files with 107 additions and 14 deletions

View File

@@ -936,6 +936,16 @@ function($scope, $location, $state, AdminSettingsService) {
};
}]);
module.controller('HelpController', [ '$scope', 'CategoryService',
'AnalyticsService',
function($scope, CategoryService, AnalyticsService) {
AnalyticsService.track();
$scope.CategoryService = CategoryService;
$scope.categoryId = 'all';
} ]);
module.controller('FooterController', [ '$scope', function($scope) {
var baseUrl = window.location.href.substring(0, window.location.href.lastIndexOf('#'));
@@ -943,4 +953,4 @@ module.controller('FooterController', [ '$scope', function($scope) {
$scope.subToMeUrl = baseUrl + 'rest/feed/subscribe?url={feed}';
$scope.subToMeName = hostname.indexOf('www.commafeed.com') !== -1 ? 'CommaFeed' : 'CommaFeed (' + hostname + ')';
} ]);
}]);