Skip to content
Snippets Groups Projects
Commit d2ec70c3 authored by HJ's avatar HJ :fire:
Browse files

added pointer cursor for nsfw placeholder. fixed nsfw videos requiring double-click

parent 87eee191
No related branches found
No related tags found
1 merge request!307Fixes and tweaks
......@@ -15,7 +15,7 @@ const Attachment = {
hideNsfwLocal: this.$store.state.config.hideNsfw,
showHidden: false,
loading: false,
img: document.createElement('img')
img: this.type === 'image' && document.createElement('img')
}
},
components: {
......@@ -45,15 +45,19 @@ const Attachment = {
}
},
toggleHidden () {
if (this.img.onload) {
this.img.onload()
} else {
this.loading = true
this.img.src = this.attachment.url
this.img.onload = () => {
this.loading = false
this.showHidden = !this.showHidden
if (this.img) {
if (this.img.onload) {
this.img.onload()
} else {
this.loading = true
this.img.src = this.attachment.url
this.img.onload = () => {
this.loading = false
this.showHidden = !this.showHidden
}
}
} else {
this.showHidden = !this.showHidden
}
}
}
......
......@@ -2,7 +2,7 @@
<div v-if="size==='hide'">
<a class="placeholder" v-if="type !== 'html'" target="_blank" :href="attachment.url">[{{nsfw ? "NSFW/" : ""}}{{type.toUpperCase()}}]</a>
</div>
<div v-else class="attachment" :class="{[type]: true, loading, 'small-attachment': isSmall, 'fullwidth': fullwidth}" v-show="!isEmpty">
<div v-else class="attachment" :class="{[type]: true, loading, 'small-attachment': isSmall, 'fullwidth': fullwidth, 'nsfw-placeholder': hidden}" v-show="!isEmpty">
<a class="image-attachment" v-if="hidden" @click.prevent="toggleHidden()">
<img :key="nsfwImage" :src="nsfwImage"/>
</a>
......@@ -50,6 +50,10 @@
margin-right: 0.5em;
}
.nsfw-placeholder {
cursor: pointer;
}
.small-attachment {
&.image, &.video {
max-width: 35%;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment