master
parent
6de079a5af
commit
aed25932b5
@ -1,2 +1,3 @@ |
|||||||
//= require jquery
|
//= require jquery
|
||||||
//= require jquery_ujs
|
//= require jquery_ujs
|
||||||
|
//= require extras
|
||||||
|
@ -0,0 +1,8 @@ |
|||||||
|
import emojify from './components/emoji' |
||||||
|
|
||||||
|
$(() => { |
||||||
|
$.each($('.entry .content, .name, .account__header__content'), (_, content) => { |
||||||
|
const $content = $(content); |
||||||
|
$content.html(emojify($content.html())); |
||||||
|
}); |
||||||
|
}); |
@ -0,0 +1,8 @@ |
|||||||
|
!!! 5 |
||||||
|
%html{:lang => 'en'} |
||||||
|
%head |
||||||
|
%meta{:charset => 'utf-8'}/ |
||||||
|
= stylesheet_link_tag 'application', media: 'all' |
||||||
|
= javascript_include_tag 'application_public' |
||||||
|
%body.embed |
||||||
|
= yield |
@ -0,0 +1,2 @@ |
|||||||
|
.activity-stream.activity-stream-headless |
||||||
|
= render partial: @type, locals: { @type.to_sym => @stream_entry.activity } |
Loading…
Reference in new issue