diff options
| author | Henry Jameson <me@hjkos.com> | 2018-04-25 17:35:25 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-07-06 20:12:09 +0300 |
| commit | 148e691199c5449360786103e3056fb24cd39938 (patch) | |
| tree | 9ab692b762a8eb144604ededfbe948a4c3207f3e /src/components/status/status.js | |
| parent | c07adb71212e6ffe73deb58f0efade8264e7f7b9 (diff) | |
initial vers
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 87ef90d8..f33293f4 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -34,6 +34,13 @@ const Status = { muteWords () { return this.$store.state.config.muteWords }, + userClass () { + console.log(this.statusoid.user) + console.log(this.statusoid.user.screen_name) + return 'USER____' + this.statusoid.user.screen_name + .replace(/\./g,'_') + .replace(/\@/g,'_AT_') + }, hideAttachments () { return (this.$store.state.config.hideAttachments && !this.inConversation) || (this.$store.state.config.hideAttachmentsInConv && this.inConversation) |
