Last active
January 1, 2016 11:29
-
-
Save JanPokorny/8138717 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name TagPro Backspace disabler | |
| // @description Don't leave, please! | |
| // @include http://tagpro-*.koalabeast.com:* | |
| // @license Do What the Fuck You Want to Public License (http://www.wtfpl.net/) | |
| // @author JohnnyPopcorn | |
| // @version 666.1 | |
| // ==/UserScript== | |
| unsafeWindow.document.addEventListener('keydown', function(e) { if(e.keyCode==8 && !unsafeWindow.tagpro.disableControls) {e.preventDefault(); e.stopPropagation(); return false;} }, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment