diff --git a/4chan_x.js b/4chan_x.js index 61308ab92..9c34e7f26 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -90,9 +90,9 @@ 'Persistent QR': [false, 'Quick reply won\'t disappear after posting. Only in replies.'] }, quote: { - 'Quote Backlinks': [false, 'Add quote backlinks'], - 'Quote Inline': [false, 'Show quoted post inline on quote click'], - 'Quote Preview': [false, 'Show quote content on hover'], + 'Quote Backlinks': [true, 'Add quote backlinks'], + 'Quote Inline': [true, 'Show quoted post inline on quote click'], + 'Quote Preview': [true, 'Show quote content on hover'], 'Indicate OP quote': [true, 'Add \'(OP)\' to OP quotes'] }, hide: { @@ -1229,9 +1229,7 @@ init: function() { var node; node = $('form[name=delform] > *:not([id])'); - $.bind(d, 'DOMNodeInserted', threading.stopPropagation); - threading.thread(node); - return $.unbind(d, 'DOMNodeInserted', threading.stopPropagation); + return threading.thread(node); }, op: function(node) { var op; @@ -1265,9 +1263,6 @@ if (!(node.align || node.nodeName === 'CENTER')) { return threading.thread(node); } - }, - stopPropagation: function(e) { - return e.stopPropagation(); } }; threadHiding = { diff --git a/script.coffee b/script.coffee index bc091a36a..8999ebdb2 100644 --- a/script.coffee +++ b/script.coffee @@ -30,9 +30,9 @@ config = 'Quick Reply': [true, 'Reply without leaving the page'] 'Persistent QR': [false, 'Quick reply won\'t disappear after posting. Only in replies.'] quote: - 'Quote Backlinks': [false, 'Add quote backlinks'] - 'Quote Inline': [false, 'Show quoted post inline on quote click'] - 'Quote Preview': [false, 'Show quote content on hover'] + 'Quote Backlinks': [true, 'Add quote backlinks'] + 'Quote Inline': [true, 'Show quoted post inline on quote click'] + 'Quote Preview': [true, 'Show quote content on hover'] 'Indicate OP quote': [true, 'Add \'(OP)\' to OP quotes'] hide: 'Reply Hiding': [true, 'Hide single replies'] @@ -993,11 +993,7 @@ threading = init: -> # don't thread image controls node = $ 'form[name=delform] > *:not([id])' - # don't confuse other scripts *cough*/b/ackwash*cough* - # gotta have a named function to unbind. - $.bind d, 'DOMNodeInserted', threading.stopPropagation threading.thread node - $.unbind d, 'DOMNodeInserted', threading.stopPropagation op: (node) -> op = $.el 'div', @@ -1028,9 +1024,6 @@ threading = unless node.align or node.nodeName is 'CENTER' threading.thread node - stopPropagation: (e) -> - e.stopPropagation() - threadHiding = init: -> hiddenThreads = $.getValue "hiddenThreads/#{g.BOARD}/", {}