aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2018-07-12 07:28:48 +0000
committerlambda <pleromagit@rogerbraun.net>2018-07-12 07:28:48 +0000
commit32fd108e97de8a1e1201bcc31f70af9ace77e517 (patch)
tree9bcad7b89374bca414d413aea7525ade42c89f8e /src/components/status/status.js
parent88c9ab44521d20d119a82684e7a55a0caf22ca17 (diff)
parent17f6eb18e73a46c0268d9c7bc46f755ac5da1b6f (diff)
Merge branch 'revert-88c9ab44' into 'develop'
Revert "Merge branch 'cw-clickthrough' into 'develop'" See merge request pleroma/pleroma-fe!292
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 40786d94..87ef90d8 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -28,8 +28,7 @@ const Status = {
userExpanded: false,
preview: null,
showPreview: false,
- showingTall: false,
- showingContentWarningContent: false
+ showingTall: false
}),
computed: {
muteWords () {
@@ -93,9 +92,6 @@ const Status = {
return 'small'
}
return 'normal'
- },
- clickThroughContentWarningsEnabled () {
- return this.$store.state.config.clickThroughContentWarningsEnabled
}
},
components: {
@@ -149,9 +145,6 @@ const Status = {
toggleShowTall () {
this.showingTall = !this.showingTall
},
- toggleContentWarningContent () {
- this.showingContentWarningContent = !this.showingContentWarningContent
- },
replyEnter (id, event) {
this.showPreview = true
const targetId = Number(id)