Fixed 'G' button not working

Fixes #218.
This commit is contained in:
Matthew Harrison-Jones 2013-07-12 17:13:40 +01:00
parent 624680bb93
commit 3de0d66b2d

View File

@ -163,7 +163,7 @@
}
function handleClickOff(e) {
if (window.matchMedia('max-width: 650px')) {
if (window.matchMedia('(max-width: 650px)').matches) {
e.preventDefault();
$('body').toggleClass('off-canvas');
}