Well that function ended up being useless

This commit is contained in:
Jeremiah Orians 2016-10-30 20:30:23 -04:00
parent fd7c684e57
commit 1ce0f2bc55
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
1 changed files with 0 additions and 22 deletions

View File

@ -62,25 +62,3 @@ $(function (){
});
});
$(window).bind('keydown', function(event) {
if (event.ctrlKey || event.metaKey) {
switch (String.fromCharCode(event.which).toLowerCase()) {
case 's':
event.preventDefault();
alert('ctrl-s');
break;
case 'f':
event.preventDefault();
alert('ctrl-f');
break;
case 'g':
event.preventDefault();
alert('ctrl-g');
break;
case 'd':
event.preventDefault();
alert('ctrol-d');
break;
}
}
});