This commit is contained in:
parent
2530972a41
commit
d48679709c
22
game/game.js
22
game/game.js
|
@ -2406,6 +2406,12 @@
|
||||||
map.show_time2.hide();
|
map.show_time2.hide();
|
||||||
map.show_time.show();
|
map.show_time.show();
|
||||||
map.watchface.hide();
|
map.watchface.hide();
|
||||||
|
}
|
||||||
|
if(lib.config.show_extensionmaker){
|
||||||
|
map.show_extensionshare.show();
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
map.show_extensionshare.hide();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
show_history:{
|
show_history:{
|
||||||
|
@ -2803,20 +2809,16 @@
|
||||||
init:false,
|
init:false,
|
||||||
unfrequent:true,
|
unfrequent:true,
|
||||||
},
|
},
|
||||||
// title:{
|
|
||||||
// name:'标题栏显示信息',
|
|
||||||
// init:false,
|
|
||||||
// unfrequent:true,
|
|
||||||
// onclick:function(bool){
|
|
||||||
// game.saveConfig('title',bool);
|
|
||||||
// if(!lib.config.title) document.title='无名杀';
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
show_extensionmaker:{
|
show_extensionmaker:{
|
||||||
name:'显示制作扩展',
|
name:'显示制作扩展',
|
||||||
init:true,
|
init:true,
|
||||||
unfrequent:true,
|
unfrequent:true,
|
||||||
},
|
},
|
||||||
|
show_extensionshare:{
|
||||||
|
name:'显示分享扩展',
|
||||||
|
init:true,
|
||||||
|
unfrequent:true,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
audio:{
|
audio:{
|
||||||
|
@ -28464,7 +28466,9 @@
|
||||||
buttonExport.style.display='none';
|
buttonExport.style.display='none';
|
||||||
buttonExport.onclick=function(){
|
buttonExport.onclick=function(){
|
||||||
processExtension(true);
|
processExtension(true);
|
||||||
|
if(lib.config.show_extensionshare){
|
||||||
shareExtLine.style.display='';
|
shareExtLine.style.display='';
|
||||||
|
}
|
||||||
};
|
};
|
||||||
inputExtLine.appendChild(buttonExport);
|
inputExtLine.appendChild(buttonExport);
|
||||||
var exportExtLine=ui.create.div(pageboard);
|
var exportExtLine=ui.create.div(pageboard);
|
||||||
|
|
Loading…
Reference in New Issue