Skip to content

Instantly share code, notes, and snippets.

@JanPokorny
Last active January 1, 2016 11:29
Show Gist options
  • Select an option

  • Save JanPokorny/8138717 to your computer and use it in GitHub Desktop.

Select an option

Save JanPokorny/8138717 to your computer and use it in GitHub Desktop.
// ==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