Skip to content

Instantly share code, notes, and snippets.

@starzonmyarmz
Created April 11, 2011 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save starzonmyarmz/913567 to your computer and use it in GitHub Desktop.
Save starzonmyarmz/913567 to your computer and use it in GitHub Desktop.
Hacks/Mods to be applied to an installation of redmine using dotjs. Rename this file to your installation's url following dotjs's naming convention.
/*
* I hate how the Issue Subject field has autocomplete turned on,
* but others at my place of employment don't share the same sentiments
* so this script will turn off autocomplete locally without modifying
* the code base.
*/
(function noAutoComplete() {
document.getElementById("issue_subject").setAttribute("autocomplete", "off");
})(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment