This commit is contained in:
libccy 2016-07-11 15:52:54 +08:00
parent 7d08d45944
commit b11567568b
1 changed files with 6 additions and 1 deletions

View File

@ -18875,7 +18875,12 @@
active._link.remove();
}
this.classList.add('active');
menuTabBar.style.left=this.offsetLeft+'px';
if(game.deviceZoom!=1){
menuTabBar.style.left=(this.offsetLeft/game.documentZoom)+'px';
}
else{
menuTabBar.style.left=this.offsetLeft+'px';
}
menuContent.appendChild(this._link);
};
ui.click.menuTab=function(tab){