2

When typing emails, I find FB quite often sends the email without me clicking the send button. I think it's the Ctrl+Enter that's getting triggered, as it usually happens when I press the enter key. Maybe I'm accidentally pressing Ctrl at the same time, not sure.

But I would like to complely disable the send on Ctrl+Enter because I am constantly sending an incomplete (and sometimes inappropriate) email before I'm ready to actually send it.

flag

1 Answer

3

Would a BugMonkey script work for you? The following will disable FogBugz's ctrl-enter submission completely:

window.handleFormKeyup = function() { return false; }
link|flag
Hmmm, I think Ctrl+Enter should be disabled by default. In IM programs like Skype and Yahoo Messenger, Ctrl+Enter is used to insert a newline in a message (since Enter sends the message). So people who are used to Ctrl+Enter for newlines are going to keep accidentally sending emails. – danielm Sep 23 2010 at 16:33

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.