Work around a small issue
causing the space after a quotelink to disappear after inlining a post and uninlining it. Seriously.
This commit is contained in:
parent
7b0b3d23e3
commit
d41448a403
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -90,6 +90,10 @@ div.navLinks {
|
||||
.reply > .file > .fileText {
|
||||
margin: 0 20px;
|
||||
}
|
||||
.hashlink::before {
|
||||
content: ' ';
|
||||
visibility: hidden;
|
||||
}
|
||||
.inline + .hashlink,
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
|
||||
@ -26,13 +26,10 @@ QuoteInline =
|
||||
return
|
||||
|
||||
qiQuote: (link, hidden) ->
|
||||
[
|
||||
$.tn(' ')
|
||||
$.el 'a',
|
||||
className: "hashlink#{if hidden then ' filtered' else ''}"
|
||||
textContent: '#'
|
||||
href: link.href
|
||||
]
|
||||
$.el 'a',
|
||||
className: "hashlink#{if hidden then ' filtered' else ''}"
|
||||
textContent: '#'
|
||||
href: link.href
|
||||
|
||||
toggle: (e) ->
|
||||
return if e.shiftKey or e.altKey or e.ctrlKey or e.metaKey or e.button isnt 0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user