Fix autoplay issue with spoiler tag (#8540)

Add tests to avoid similar issues in the future
This commit is contained in:
Renato "Lond" Cerqueira 2018-08-31 15:16:59 +02:00 committed by Eugen Rochko
parent 50d8cf8aed
commit fe56d26f7b
4 changed files with 26 additions and 3 deletions

View file

@ -20,7 +20,7 @@
.status__content.emojify<
- if status.spoiler_text?
%p{ style: 'margin-bottom: 0' }<
%span.p-summary> #{Formatter.instance.format_spoiler(status)}&nbsp;
%span.p-summary> #{Formatter.instance.format_spoiler(status, autoplay: autoplay)}&nbsp;
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
.e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true, autoplay: autoplay)