diff --git a/src/main/webapp/js/controllers.js b/src/main/webapp/js/controllers.js index 55b5ef7e..514a8c85 100644 --- a/src/main/webapp/js/controllers.js +++ b/src/main/webapp/js/controllers.js @@ -541,6 +541,7 @@ function($scope, $stateParams, $http, $route, $window, EntryService, SettingsSer $scope.isOpen = SettingsService.settings.viewMode == 'expanded'; $scope.entryClicked = function(entry, event) { + $scope.navigationMode = 'click'; if (!event.ctrlKey && event.which != 2) { if ($scope.current != entry || SettingsService.settings.viewMode == 'expanded') { $scope.isOpen = true; @@ -608,6 +609,7 @@ function($scope, $stateParams, $http, $route, $window, EntryService, SettingsSer }; $scope.onScroll = function(entry) { + $scope.navigationMode = 'scroll'; if (SettingsService.settings.viewMode == 'expanded') { $scope.current = entry; if(SettingsService.settings.scrollMarks) { diff --git a/src/main/webapp/templates/feeds.view.html b/src/main/webapp/templates/feeds.view.html index d98d0725..612c57c4 100644 --- a/src/main/webapp/templates/feeds.view.html +++ b/src/main/webapp/templates/feeds.view.html @@ -6,8 +6,8 @@
Error while loading this feed : {{message}}
-
+