mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14: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
|
Background image
|
||||||
<em><font-awesome-icon icon="image"/></em>
|
<em><font-awesome-icon icon="image"/></em>
|
||||||
</li>
|
</li>
|
||||||
<li v-if="!edition.isOfficial" @click="imageOptIn">
|
<!-- <li v-if="!edition.isOfficial" @click="imageOptIn">
|
||||||
<small>Show Custom Images</small>
|
<small>Show Custom Images</small>
|
||||||
<em
|
<em
|
||||||
><font-awesome-icon
|
><font-awesome-icon
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
grimoire.isImageOptIn ? 'check-square' : 'square'
|
grimoire.isImageOptIn ? 'check-square' : 'square'
|
||||||
]"
|
]"
|
||||||
/></em>
|
/></em>
|
||||||
</li>
|
</li> -->
|
||||||
<li @click="toggleStatic">
|
<li @click="toggleStatic">
|
||||||
Disable Animations
|
Disable Animations
|
||||||
<em
|
<em
|
||||||
|
|
|
@ -104,7 +104,7 @@ export default new Vuex.Store({
|
||||||
isMenuOpen: false,
|
isMenuOpen: false,
|
||||||
isStatic: false,
|
isStatic: false,
|
||||||
isMuted: false,
|
isMuted: false,
|
||||||
isImageOptIn: false,
|
isImageOptIn: true,
|
||||||
zoom: 0,
|
zoom: 0,
|
||||||
background: ""
|
background: ""
|
||||||
},
|
},
|
||||||
|
@ -170,7 +170,7 @@ export default new Vuex.Store({
|
||||||
toggleStatic: toggle("isStatic"),
|
toggleStatic: toggle("isStatic"),
|
||||||
toggleNight: toggle("isNight"),
|
toggleNight: toggle("isNight"),
|
||||||
toggleGrimoire: toggle("isPublic"),
|
toggleGrimoire: toggle("isPublic"),
|
||||||
toggleImageOptIn: toggle("isImageOptIn"),
|
// toggleImageOptIn: toggle("isImageOptIn"),
|
||||||
toggleModal({ modals }, name) {
|
toggleModal({ modals }, name) {
|
||||||
if (name) {
|
if (name) {
|
||||||
modals[name] = !modals[name];
|
modals[name] = !modals[name];
|
||||||
|
|
Loading…
Add table
Reference in a new issue