This commit is contained in:
James Campos 2011-07-31 15:42:08 -07:00
parent 4830bda4c8
commit b3a6f8f0b4
2 changed files with 5 additions and 0 deletions

View File

@ -2049,6 +2049,9 @@
}, },
toggle: function(e) { toggle: function(e) {
var el, hidden, id, inline, inlined, pathname, root, table, threadID, _i, _len, _ref; var el, hidden, id, inline, inlined, pathname, root, table, threadID, _i, _len, _ref;
if (e.shiftKey || e.altKey || e.ctrlKey || e.button !== 0) {
return;
}
e.preventDefault(); e.preventDefault();
/* /*
https://bugzilla.mozilla.org/show_bug.cgi?id=674955 https://bugzilla.mozilla.org/show_bug.cgi?id=674955

View File

@ -1589,6 +1589,8 @@ quoteInline =
quote.removeAttribute 'onclick' quote.removeAttribute 'onclick'
$.bind quote, 'click', quoteInline.toggle $.bind quote, 'click', quoteInline.toggle
toggle: (e) -> toggle: (e) ->
return if e.shiftKey or e.altKey or e.ctrlKey or e.button isnt 0
e.preventDefault() e.preventDefault()
### ###
https://bugzilla.mozilla.org/show_bug.cgi?id=674955 https://bugzilla.mozilla.org/show_bug.cgi?id=674955