This commit is contained in:
parent
23cda3af5a
commit
10067f2165
20
game/game.js
20
game/game.js
|
@ -32422,6 +32422,17 @@
|
||||||
buttonExport.style.display='none';
|
buttonExport.style.display='none';
|
||||||
};
|
};
|
||||||
inputExtLine.appendChild(buttonRename);
|
inputExtLine.appendChild(buttonRename);
|
||||||
|
var buttonReset=document.createElement('button');
|
||||||
|
buttonReset.innerHTML='重置';
|
||||||
|
buttonReset.style.marginLeft='2px';
|
||||||
|
buttonReset.style.marginRight='2px';
|
||||||
|
buttonReset.style.display='none';
|
||||||
|
buttonReset.onclick=function(){
|
||||||
|
if(confirm('当前扩展将被清除,是否确定?')){
|
||||||
|
game.editExtension();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
inputExtLine.appendChild(buttonReset);
|
||||||
var buttonSave=document.createElement('button');
|
var buttonSave=document.createElement('button');
|
||||||
buttonSave.innerHTML='保存';
|
buttonSave.innerHTML='保存';
|
||||||
buttonSave.style.marginLeft='2px';
|
buttonSave.style.marginLeft='2px';
|
||||||
|
@ -32435,15 +32446,6 @@
|
||||||
processExtension();
|
processExtension();
|
||||||
};
|
};
|
||||||
inputExtLine.appendChild(buttonSave);
|
inputExtLine.appendChild(buttonSave);
|
||||||
var buttonReset=document.createElement('button');
|
|
||||||
buttonReset.innerHTML='重置';
|
|
||||||
buttonReset.style.marginLeft='2px';
|
|
||||||
buttonReset.style.marginRight='2px';
|
|
||||||
buttonReset.style.display='none';
|
|
||||||
buttonReset.onclick=function(){
|
|
||||||
game.editExtension();
|
|
||||||
};
|
|
||||||
inputExtLine.appendChild(buttonReset);
|
|
||||||
var buttonExport=document.createElement('button');
|
var buttonExport=document.createElement('button');
|
||||||
buttonExport.innerHTML='导出';
|
buttonExport.innerHTML='导出';
|
||||||
buttonExport.style.marginLeft='2px';
|
buttonExport.style.marginLeft='2px';
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
window.noname_update={
|
window.noname_update={
|
||||||
version:'1.9.43.2',
|
version:'1.9.44',
|
||||||
update:'1.9.43',
|
update:'1.9.43',
|
||||||
changeLog:[
|
changeLog:[
|
||||||
|
'新扩展导出选项',
|
||||||
'bug修复'
|
'bug修复'
|
||||||
],
|
],
|
||||||
files:[
|
files:[
|
||||||
|
|
Loading…
Reference in New Issue