mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-03 21:54:38 +00:00
Always allow external url for images
This commit is contained in:
parent
d9c2b17dc9
commit
8c708d24a8
2 changed files with 4 additions and 4 deletions
|
@ -87,7 +87,7 @@
|
|||
Background image
|
||||
<em><font-awesome-icon icon="image"/></em>
|
||||
</li>
|
||||
<li v-if="!edition.isOfficial" @click="imageOptIn">
|
||||
<!-- <li v-if="!edition.isOfficial" @click="imageOptIn">
|
||||
<small>Show Custom Images</small>
|
||||
<em
|
||||
><font-awesome-icon
|
||||
|
@ -96,7 +96,7 @@
|
|||
grimoire.isImageOptIn ? 'check-square' : 'square'
|
||||
]"
|
||||
/></em>
|
||||
</li>
|
||||
</li> -->
|
||||
<li @click="toggleStatic">
|
||||
Disable Animations
|
||||
<em
|
||||
|
|
|
@ -104,7 +104,7 @@ export default new Vuex.Store({
|
|||
isMenuOpen: false,
|
||||
isStatic: false,
|
||||
isMuted: false,
|
||||
isImageOptIn: false,
|
||||
isImageOptIn: true,
|
||||
zoom: 0,
|
||||
background: ""
|
||||
},
|
||||
|
@ -170,7 +170,7 @@ export default new Vuex.Store({
|
|||
toggleStatic: toggle("isStatic"),
|
||||
toggleNight: toggle("isNight"),
|
||||
toggleGrimoire: toggle("isPublic"),
|
||||
toggleImageOptIn: toggle("isImageOptIn"),
|
||||
// toggleImageOptIn: toggle("isImageOptIn"),
|
||||
toggleModal({ modals }, name) {
|
||||
if (name) {
|
||||
modals[name] = !modals[name];
|
||||
|
|
Loading…
Add table
Reference in a new issue