This commit is contained in:
libccy 2017-04-17 15:21:59 +08:00
parent e8f523054b
commit e3ed4d810d
1 changed files with 9 additions and 6 deletions

View File

@ -5281,7 +5281,7 @@
}, },
setScroll:function(node){ setScroll:function(node){
node.ontouchstart=ui.click.touchStart; node.ontouchstart=ui.click.touchStart;
node.ontouchmove = ui.click.touchScroll; node.ontouchmove=ui.click.touchScroll;
node.style.WebkitOverflowScrolling='touch'; node.style.WebkitOverflowScrolling='touch';
return node; return node;
}, },
@ -32975,7 +32975,11 @@
text.style.left='30px'; text.style.left='30px';
text.style.top='50px'; text.style.top='50px';
text.style.wordBreak='break-all'; text.style.wordBreak='break-all';
lib.setScroll(text); var pre=ui.create.node('pre.fulldiv',text);
pre.style.margin=0;
pre.style.padding=0;
pre.style.position='relative';
lib.setScroll(pre);
page.appendChild(text); page.appendChild(text);
// var caption=ui.create.div('','输入命令',page); // var caption=ui.create.div('','输入命令',page);
@ -33005,7 +33009,7 @@
logs.unshift(text2.value); logs.unshift(text2.value);
} }
if(text2.value=='cls'){ if(text2.value=='cls'){
text.innerHTML=''; pre.innerHTML='';
text2.value=''; text2.value='';
} }
else if(text2.value=='up'){ else if(text2.value=='up'){
@ -33074,7 +33078,6 @@
else{ else{
textstr+=arguments[i].toString(); textstr+=arguments[i].toString();
} }
console.log(argi);
} }
else{ else{
textstr+=arguments[i]; textstr+=arguments[i];
@ -33084,7 +33087,7 @@
} }
} }
textstr+='<br>'; textstr+='<br>';
text.innerHTML+=textstr.replace(/\n/g,'<br>').replace(/ /g,'&nbsp;'); pre.innerHTML+=textstr;
text.scrollTop=text.scrollHeight; text.scrollTop=text.scrollHeight;
} }
if(_status.toprint){ if(_status.toprint){
@ -33095,7 +33098,7 @@
} }
runButton.listen(runCommand); runButton.listen(runCommand);
clearButton.listen(function(){ clearButton.listen(function(){
text.innerHTML=''; pre.innerHTML='';
}); });
}()); }());
(function(){ (function(){