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:
Zixaphir 2014-01-13 00:23:40 -07:00
parent 7b0b3d23e3
commit d41448a403
4 changed files with 20 additions and 23 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -90,6 +90,10 @@ div.navLinks {
.reply > .file > .fileText {
margin: 0 20px;
}
.hashlink::before {
content: ' ';
visibility: hidden;
}
.inline + .hashlink,
[hidden] {
display: none !important;

View File

@ -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