Oh god what am I doing I'm not very good with computers.
This commit is contained in:
parent
e2fe3fe294
commit
4538903ca7
@ -1178,7 +1178,9 @@
|
||||
}
|
||||
node = node.nextElementSibling;
|
||||
if (node.nodeName === 'SPAN' || node.nodeName === 'IMG') {
|
||||
return threading.thread(node);
|
||||
if (!(node.align || node.nodeName === 'CENTER')) {
|
||||
return threading.thread(node);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@ -914,8 +914,11 @@ threading =
|
||||
node = div.nextSibling
|
||||
|
||||
node = node.nextElementSibling #skip text node
|
||||
#span.fileseze, img[alt="File deleted."]
|
||||
if node.nodeName is 'SPAN' or node.nodeName is 'IMG'
|
||||
threading.thread node
|
||||
#{N,}SFW
|
||||
unless node.align or node.nodeName is 'CENTER'
|
||||
threading.thread node
|
||||
|
||||
threadHiding =
|
||||
init: ->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user