diff options
author | 135e2 <[email protected]> | 2022-08-09 02:21:17 +0800 |
---|---|---|
committer | 135e2 <[email protected]> | 2022-08-09 02:21:17 +0800 |
commit | 1c7a014c7bc2a9198c35f5824ee47bc241ccb687 (patch) | |
tree | 374b4f5515fcded91f4405b96336828413a7f9f5 /src/App.vue | |
parent | 74018e8dcaa4f2e35b94b59393d5f0cc3c9fb832 (diff) | |
download | otonashi-1c7a014c7bc2a9198c35f5824ee47bc241ccb687.tar.gz otonashi-1c7a014c7bc2a9198c35f5824ee47bc241ccb687.tar.bz2 otonashi-1c7a014c7bc2a9198c35f5824ee47bc241ccb687.zip |
revert: Revert "feat(SettingsPage): add backgroundImage customization"
This reverts commit ffd55641317ebd6344e92eb8a3204981846b5e05.
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/App.vue b/src/App.vue index 366aeea..1beefd2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -54,7 +54,6 @@ v-else-if="atSettings" @update-title-size="updateTitleSize" @update-content-size="updateContentSize" - @update-background-image-url="updateBackgroundImageURL" :realTitleSize="parseInt(titleSize)" :realContentSize="contentSize" /> @@ -94,7 +93,7 @@ export default { snackbarText: "Default snackbar text (End-user shouldn't see this)", bg: { // backgroundColor: "grey", - backgroundImage: "", + // backgroundImage: "url(https://wallpapercave.com/wp/wp9649930.jpg)", backgroundPosition: "center", }, }), @@ -125,9 +124,6 @@ export default { updateContentSize(s) { this.contentSize = s; }, - updateBackgroundImageURL(s) { - this.bg.backgroundImage = s ? `url(${s})` : ""; - }, }, }; </script> |