s/||/or
This commit is contained in:
parent
7c6eafe358
commit
4e9165b3f9
@ -1065,7 +1065,7 @@ threadHiding =
|
|||||||
num += $$('table', thread).length
|
num += $$('table', thread).length
|
||||||
text = if num is 1 then "1 reply" else "#{num} replies"
|
text = if num is 1 then "1 reply" else "#{num} replies"
|
||||||
name = $('span.postername', thread).textContent
|
name = $('span.postername', thread).textContent
|
||||||
trip = $('span.postername + span.postertrip', thread)?.textContent || ''
|
trip = $('span.postername + span.postertrip', thread)?.textContent or ''
|
||||||
|
|
||||||
a = $.el 'a',
|
a = $.el 'a',
|
||||||
textContent: "[ + ] #{name}#{trip} (#{text})"
|
textContent: "[ + ] #{name}#{trip} (#{text})"
|
||||||
@ -1793,7 +1793,7 @@ main =
|
|||||||
g.REPLY = temp
|
g.REPLY = temp
|
||||||
g.THREAD_ID = pathname[2]
|
g.THREAD_ID = pathname[2]
|
||||||
else
|
else
|
||||||
g.PAGENUM = parseInt(temp) || 0
|
g.PAGENUM = parseInt(temp) or 0
|
||||||
|
|
||||||
if location.hostname is 'sys.4chan.org'
|
if location.hostname is 'sys.4chan.org'
|
||||||
qr.sys()
|
qr.sys()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user