Created
April 11, 2011 14:04
-
-
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.
This file contains 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
/* | |
* 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