This commit is contained in:
parent
ab74a80b30
commit
9636c3b913
50
game/game.js
50
game/game.js
|
@ -21745,6 +21745,10 @@
|
||||||
};
|
};
|
||||||
var dashboard=ui.create.div(pageboard);
|
var dashboard=ui.create.div(pageboard);
|
||||||
var clickDash=function(){
|
var clickDash=function(){
|
||||||
|
var templayer=ui.create.div('.popup-container',ui.window);
|
||||||
|
setTimeout(function(){
|
||||||
|
templayer.remove();
|
||||||
|
},500);
|
||||||
pageboard.hide();
|
pageboard.hide();
|
||||||
this.link.show();
|
this.link.show();
|
||||||
};
|
};
|
||||||
|
@ -21913,6 +21917,10 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
ui.create.div('.config.more','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
ui.create.div('.config.more','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
||||||
|
var templayer=ui.create.div('.popup-container',ui.window);
|
||||||
|
setTimeout(function(){
|
||||||
|
templayer.remove();
|
||||||
|
},500);
|
||||||
page.hide();
|
page.hide();
|
||||||
pageboard.show();
|
pageboard.show();
|
||||||
});
|
});
|
||||||
|
@ -22307,6 +22315,10 @@
|
||||||
updatePile();
|
updatePile();
|
||||||
};
|
};
|
||||||
ui.create.div('.config.more.margin-bottom','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
ui.create.div('.config.more.margin-bottom','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
||||||
|
var templayer=ui.create.div('.popup-container',ui.window);
|
||||||
|
setTimeout(function(){
|
||||||
|
templayer.remove();
|
||||||
|
},500);
|
||||||
page.hide();
|
page.hide();
|
||||||
pageboard.show();
|
pageboard.show();
|
||||||
});
|
});
|
||||||
|
@ -22483,6 +22495,16 @@
|
||||||
ui.window.appendChild(node);
|
ui.window.appendChild(node);
|
||||||
node.editor.setValue(node.code,1);
|
node.editor.setValue(node.code,1);
|
||||||
}
|
}
|
||||||
|
else if(lib.device=='ios'){
|
||||||
|
ui.window.appendChild(node);
|
||||||
|
if(!node.textarea){
|
||||||
|
var textarea=document.createElement('textarea');
|
||||||
|
editor.appendChild(textarea);
|
||||||
|
node.textarea=textarea;
|
||||||
|
lib.setScroll(textarea);
|
||||||
|
}
|
||||||
|
node.textarea.value=node.code;
|
||||||
|
}
|
||||||
else{
|
else{
|
||||||
var aceReady=function(){
|
var aceReady=function(){
|
||||||
ui.window.appendChild(node);
|
ui.window.appendChild(node);
|
||||||
|
@ -22751,6 +22773,10 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
ui.create.div('.config.more.margin-bottom','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
ui.create.div('.config.more.margin-bottom','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
||||||
|
var templayer=ui.create.div('.popup-container',ui.window);
|
||||||
|
setTimeout(function(){
|
||||||
|
templayer.remove();
|
||||||
|
},500);
|
||||||
page.hide();
|
page.hide();
|
||||||
pageboard.show();
|
pageboard.show();
|
||||||
});
|
});
|
||||||
|
@ -22843,6 +22869,16 @@
|
||||||
ui.window.appendChild(node);
|
ui.window.appendChild(node);
|
||||||
node.editor.setValue(node.code,1);
|
node.editor.setValue(node.code,1);
|
||||||
}
|
}
|
||||||
|
else if(lib.device=='ios'){
|
||||||
|
ui.window.appendChild(node);
|
||||||
|
if(!node.textarea){
|
||||||
|
var textarea=document.createElement('textarea');
|
||||||
|
editor.appendChild(textarea);
|
||||||
|
node.textarea=textarea;
|
||||||
|
lib.setScroll(textarea);
|
||||||
|
}
|
||||||
|
node.textarea.value=node.code;
|
||||||
|
}
|
||||||
else{
|
else{
|
||||||
var aceReady=function(){
|
var aceReady=function(){
|
||||||
ui.window.appendChild(node);
|
ui.window.appendChild(node);
|
||||||
|
@ -23023,6 +23059,10 @@
|
||||||
var dash4=(function(){
|
var dash4=(function(){
|
||||||
var page=ui.create.div('.hidden.menu-buttons');
|
var page=ui.create.div('.hidden.menu-buttons');
|
||||||
ui.create.div('.config.more.margin-bottom','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
ui.create.div('.config.more.margin-bottom','<div style="transform:none;margin-right:3px">←</div>返回',page,function(){
|
||||||
|
var templayer=ui.create.div('.popup-container',ui.window);
|
||||||
|
setTimeout(function(){
|
||||||
|
templayer.remove();
|
||||||
|
},500);
|
||||||
page.hide();
|
page.hide();
|
||||||
pageboard.show();
|
pageboard.show();
|
||||||
});
|
});
|
||||||
|
@ -23098,6 +23138,16 @@
|
||||||
ui.window.appendChild(node);
|
ui.window.appendChild(node);
|
||||||
node.editor.setValue(node.code,1);
|
node.editor.setValue(node.code,1);
|
||||||
}
|
}
|
||||||
|
else if(lib.device=='ios'){
|
||||||
|
ui.window.appendChild(node);
|
||||||
|
if(!node.textarea){
|
||||||
|
var textarea=document.createElement('textarea');
|
||||||
|
this.editor.appendChild(textarea);
|
||||||
|
node.textarea=textarea;
|
||||||
|
lib.setScroll(textarea);
|
||||||
|
}
|
||||||
|
node.textarea.value=node.code;
|
||||||
|
}
|
||||||
else{
|
else{
|
||||||
var editor=this.editor;
|
var editor=this.editor;
|
||||||
var aceReady=function(){
|
var aceReady=function(){
|
||||||
|
|
Loading…
Reference in New Issue