removed user button, made cider logo a button. deleted some unused files

This commit is contained in:
booploops 2022-02-01 22:01:53 -08:00
parent 9e00268ea6
commit 361fe5c8ae
9 changed files with 138 additions and 2296 deletions

View file

@ -340,6 +340,13 @@ const app = new Vue({
},
},
methods: {
mainMenuVisibility(val) {
if(val) {
(this.chrome.userinfo.id) ? this.chrome.menuOpened = !this.chrome.menuOpened : false
}else{
setTimeout(()=>{this.chrome.menuOpened = false}, 100)
}
},
stringTemplateParser(expression, valueObj) {
const templateMatcher = /{{\s?([^{}\s]*)\s?}}/g;
let text = expression.replace(templateMatcher, (substring, value, index) => {
@ -594,7 +601,6 @@ const app = new Vue({
if (this.isDev) {
this.mk.privateEnabled = true
// Hide UserInfo if Dev mode
this.chrome.hideUserInfo = true
} else {
// Get Hide User from Settings
this.chrome.hideUserInfo = !this.cfg.visual.showuserinfo