Skip to content

Commit

Permalink
97
Browse files Browse the repository at this point in the history
  • Loading branch information
libccy authored and libccy committed Feb 21, 2017
1 parent d9cdb9c commit 5e90c2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion game/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -33910,9 +33910,14 @@
}
var intro=ui.create.div('.characterintro',get.characterIntro(name),uiintro);
var intro2=ui.create.div('.characterintro.intro2',uiintro);

var list=lib.character[name][3];
var skills=ui.create.div('.characterskill',uiintro);
if(lib.config.touchscreen){
lib.setScroll(intro);
lib.setScroll(intro2);
lib.setScroll(skills);
}

if(lib.config.mousewheel){
skills.onmousewheel=ui.click.mousewheel;
}
Expand Down
4 changes: 2 additions & 2 deletions game/update.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
window.noname_update={
version:'1.9.9.6',
version:'1.9.9.7',
update:'1.9.9.6',
changeLog:[
'武将介绍',
'bug修复',
],
files:[
'game/game.js',
Expand Down

0 comments on commit 5e90c2e

Please sign in to comment.