untrusted-test-only / scripts /_launcher_release.js
lychees's picture
Upload 569 files
87b3b3a
raw
history blame contribute delete
283 Bytes
$(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;
}
});