From 84b5be7f0bdfd346172c993b72cf0570bce03245 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 19 Dec 2013 17:57:26 +0100 Subject: fix shortcuts and add shortcut to expand current item --- js/public/app.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'js/public') diff --git a/js/public/app.js b/js/public/app.js index caaf5dc52..c729c90b0 100644 --- a/js/public/app.js +++ b/js/public/app.js @@ -196,7 +196,7 @@ License along with this library. If not, see . angular.module('News').directive('itemShortcuts', [ '$window', function($window) { return function(scope, elm, attr) { - var getCurrentItem, jumpTo, jumpToNextItem, jumpToPreviousItem, keepUnreadCurrentItem, openCurrentItem, starCurrentItem; + var expandCurrentItem, getCurrentItem, jumpTo, jumpToNextItem, jumpToPreviousItem, keepUnreadCurrentItem, openCurrentItem, starCurrentItem; jumpTo = function($scrollArea, $item) { var position; position = $item.offset().top - $scrollArea.offset().top + $scrollArea.scrollTop(); @@ -248,7 +248,7 @@ License along with this library. If not, see . for (_i = 0, _len = $items.length; _i < _len; _i++) { item = $items[_i]; $item = $(item); - if (($item.height() + $item.position().top) > 110) { + if (($item.height() + $item.position().top) > 30) { return $item; } } @@ -263,6 +263,11 @@ License along with this library. If not, see . $item = getCurrentItem(scrollArea); return $item.find('.star').trigger('click'); }; + expandCurrentItem = function(scrollArea) { + var $item; + $item = getCurrentItem(scrollArea); + return $item.find('.item_heading a').trigger('click'); + }; openCurrentItem = function(scrollArea) { var $item; $item = getCurrentItem(scrollArea).find('.item_title a'); @@ -283,6 +288,9 @@ License along with this library. If not, see . } else if (e.keyCode === 85) { e.preventDefault(); return keepUnreadCurrentItem(scrollArea); + } else if (e.keyCode === 69) { + e.preventDefault(); + return expandCurrentItem(scrollArea); } else if (e.keyCode === 73 || e.keyCode === 83 || e.keyCode === 76) { e.preventDefault(); return starCurrentItem(scrollArea); -- cgit v1.2.3