fix #206
This commit is contained in:
parent
4830bda4c8
commit
b3a6f8f0b4
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user