This commit is contained in:
libccy 2017-03-24 17:30:44 +08:00
parent 2530972a41
commit d48679709c
1 changed files with 14 additions and 10 deletions

View File

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