From 9c8ab393febcb0d771d812135c7d2bf095298e5f Mon Sep 17 00:00:00 2001 From: libccy Date: Thu, 13 Apr 2017 18:39:21 +0800 Subject: [PATCH] t4 --- game/game.js | 25 +++---------------------- game/update.js | 6 +++--- 2 files changed, 6 insertions(+), 25 deletions(-) diff --git a/game/game.js b/game/game.js index 01464cd79..a100f74d6 100644 --- a/game/game.js +++ b/game/game.js @@ -525,6 +525,7 @@ onclick:function(theme){ game.saveConfig('theme',theme); ui.arena.hide(); + lib.init.background(); setTimeout(function(){ var theme=ui.css.theme; ui.css.theme=lib.init.css(lib.assetURL+'theme/'+lib.config.theme,'style'); @@ -676,7 +677,6 @@ else{ lib.init.layout(layout); } - lib.init.background(); } }, // fewplayer:{ @@ -5812,7 +5812,7 @@ lib.assetURL=noname_inited; } - ui.css={default:lib.init.css('layout/default','layout')}; + ui.css={default:lib.init.css(lib.assetURL+'layout/default','layout')}; if(localStorage.getItem(lib.configprefix+'background')){ document.documentElement.style.backgroundImage='url("'+lib.assetURL+'image/background/'+localStorage.getItem(lib.configprefix+'background')+'.jpg")'; document.documentElement.style.backgroundSize='cover'; @@ -6397,7 +6397,6 @@ } game.saveConfig('image_background',list.randomGet(lib.config.image_background)); } - var styleToLoad=7; var styleLoaded=function(){ styleToLoad--; @@ -6558,6 +6557,7 @@ } } game.saveConfig('storageImported',true); + lib.init.background(); localStorage.removeItem(lib.configprefix+'config'); } else{ @@ -27711,25 +27711,6 @@ } } } - // else if(j=='import_background'){ - // cfgnode.querySelector('button').onclick=function(){ - // var fileToLoad=this.previousSibling.files[0]; - // if(fileToLoad){ - // game.putDB('image','background',fileToLoad); - // var fileReader = new FileReader(); - // fileReader.onload = function(fileLoadedEvent) - // { - // var data = fileLoadedEvent.target.result; - // ui.background.style.backgroundImage='url('+data+')'; - // }; - // fileReader.readAsDataURL(fileToLoad, "UTF-8"); - // } - // else{ - // game.deleteDB('image','background'); - // ui.background.style.backgroundImage='none'; - // } - // } - // } else if(j=='import_music'){ cfgnode.querySelector('button').onclick=function(){ var fileToLoad=this.previousSibling.files[0]; diff --git a/game/update.js b/game/update.js index 319f79e64..ea00b2bc8 100644 --- a/game/update.js +++ b/game/update.js @@ -1,8 +1,8 @@ window.noname_update={ - version:'1.9.22.3', - update:'1.9.21', + version:'1.9.23', + // update:'1.9.21', changeLog:[ - '屏幕常亮选项(需更新客户端)', + 'bug修复', ], files:[ 'game/game.js',