summaryrefslogtreecommitdiffstats
path: root/js/public
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-25 14:05:26 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-25 14:05:26 +0200
commit025cbba00f3f026d0d8cc4b81e6cf9bf4376f562 (patch)
tree9cf382d92c3fa8e2cc5d2ccfc0fe74fa60b979a4 /js/public
parentcca3ff47f0c88a6bf77def34a7d6fce11a359063 (diff)
also use l for star (9gag, like)
Diffstat (limited to 'js/public')
-rw-r--r--js/public/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 18aadc4c7..01bb7cbae 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -232,7 +232,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
return jumpToPreviousItem(scrollArea);
} else if (e.keyCode === 85) {
return keepUnreadCurrentItem(scrollArea);
- } else if (e.keyCode === 73 || e.keyCode === 83) {
+ } else if (e.keyCode === 73 || e.keyCode === 83 || e.keyCode === 76) {
return starCurrentItem(scrollArea);
}
}