Commit 6261d9c8 by Dave St.Germain

Merge pull request #5014 from edx/dcs/BLD-1189

Removed spacebar event handler, because it did more harm than good.
parents bda16e2f 978ed106
......@@ -20,13 +20,6 @@ data: |
height: 350,
lightbox: false
});
$(document).keydown(function(event) {
if (event.keyCode == 32) {
event.preventDefault();
$('.loupe img').click();
}
});
});
// ]]></script>
<div id="ap_listener_added"></div>
......@@ -20,12 +20,6 @@ data: |
height: 350,
lightbox: false
});
$(document).keydown(function(event) {
if (event.keyCode == 32) {
event.preventDefault();
$('.loupe img').click();
}
});
});
// ]]></script>
<div id="ap_listener_added"></div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment