Commit 978ed106 by Dave St.Germain

Removed spacebar event handler, because it did more harm than good.

parent 17395248
...@@ -20,13 +20,6 @@ data: | ...@@ -20,13 +20,6 @@ data: |
height: 350, height: 350,
lightbox: false lightbox: false
}); });
$(document).keydown(function(event) {
if (event.keyCode == 32) {
event.preventDefault();
$('.loupe img').click();
}
});
}); });
// ]]></script> // ]]></script>
<div id="ap_listener_added"></div> <div id="ap_listener_added"></div>
...@@ -20,12 +20,6 @@ data: | ...@@ -20,12 +20,6 @@ data: |
height: 350, height: 350,
lightbox: false lightbox: false
}); });
$(document).keydown(function(event) {
if (event.keyCode == 32) {
event.preventDefault();
$('.loupe img').click();
}
});
}); });
// ]]></script> // ]]></script>
<div id="ap_listener_added"></div> <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