diff --git a/static/js/learn.js b/static/js/learn.js index d1acd4c275..1b5d59ffb6 100644 --- a/static/js/learn.js +++ b/static/js/learn.js @@ -223,6 +223,13 @@ jQuery(document).ready(function() { }); }); + jQuery('input').keydown(function (e) { + // left and right arrow keys + if (e.which == '37' || e.which == '39') { + e.stopPropagation(); + } + }); + jQuery(document).keydown(function(e) { // prev links - left arrow key if(e.which == '37') {