Go for it, Shinji-kun! This isn't for someone else! It's for the sake of your own wishes

This commit is contained in:
Nicolas Stepien 2011-05-25 21:49:15 +02:00
parent cdbc79c8c9
commit af98c5c96f
2 changed files with 7 additions and 19 deletions

View File

@ -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: {
@ -1228,9 +1228,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;
@ -1264,9 +1262,6 @@
if (!(node.align || node.nodeName === 'CENTER')) {
return threading.thread(node);
}
},
stopPropagation: function(e) {
return e.stopPropagation();
}
};
threadHiding = {

View File

@ -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']
@ -992,11 +992,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',
@ -1027,9 +1023,6 @@ threading =
unless node.align or node.nodeName is 'CENTER'
threading.thread node
stopPropagation: (e) ->
e.stopPropagation()
threadHiding =
init: ->
hiddenThreads = $.getValue "hiddenThreads/#{g.BOARD}/", {}