Indefero

Indefero Commit Details


Date:2012-11-17 17:58:27 (12 years 1 month ago)
Author:Thomas Keller
Branch:develop, release-1.3
Commit:6c5406dd99bfe674e73a8034de8369878b0aaadd
Parents: 4aa41005326ccbea766124c58587f0bc8eac2529
Message:Fix a problem in jquery.hotkeys that triggered global hotkeys when one was in a password text field. Upstream should know of this problem for a long time already, but hasn't released a fixed version yet, so we're applying our own patch here (fixes issue 821).

Changes:

File differences

NEWS.mdtext
3030
3131
3232
33
33
3434
3535
3636
37
38
39
3740
3841
3942
the project's URL, logo and individual SCM settings are copied by default.
- Wiki pages couldn't be properly saved with E_NOTICE enabled because
of a syntax error (fixes issue 808)
of a syntax error (fixes issue 808).
- Indefero now shows detected copies in git changesets.
- A user is no longer redirected to the Help page if he enters 'H' in the
password text field on the login page (fixes issue 821).
# InDefero 1.3.2 - Wed May 09 20:05 2012 UTC
## Bugfixes
www/media/idf/js/jquery.hotkeys.js
4444
4545
4646
47
47
4848
4949
5050
handleObj.handler = function( event ) {
// Don't fire in text-accepting inputs that we didn't directly bind to
if ( this !== event.target && (/textarea|select/i.test( event.target.nodeName ) ||
if ( this !== event.target && (/textarea|select|input/i.test( event.target.nodeName ) ||
event.target.type === "text" || $(event.target).prop('contenteditable') == 'true' )) {
return;
}

Archive Download the corresponding diff file

Page rendered in 0.08945s using 14 queries.