File size: 283 Bytes
87b3b3a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(document).ready(function() {
    new Game()._initialize();
    window.eval = {};
});

// prevent ctrl+R and F5
$(document).bind('keydown keyup', function(e) {
    if(e.which === 116) {
       return false;
    }
    if(e.which === 82 && e.ctrlKey) {
       return false;
    }
});