1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/de882c903511/ Changeset: de882c903511 User: Jeremy Goecks Date: 2014-04-25 22:58:21 Summary: Do not propagate keyboard events in JS editable text plugin; this prevents unwanted side effects with other elmements on the page using keyboard events. Affected #: 1 file diff -r 986d7190844d5f7b68804242699a8049af80a937 -r de882c9035116eccd7563c9f89aec586a017ce2f static/scripts/galaxy.base.js --- a/static/scripts/galaxy.base.js +++ b/static/scripts/galaxy.base.js @@ -356,6 +356,9 @@ // Enter key. set_text($(this).val()); } + + // Do not propogate event to avoid unwanted side effects. + e.stopPropagation(); }); } Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.