mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
34 lines
838 B
JavaScript
34 lines
838 B
JavaScript
var editor;
|
|
onload=function(){
|
|
var d=document;
|
|
var ext = location.href.split('.').pop();
|
|
{
|
|
var ta=d.getElementById("textarea");
|
|
var text=ta.value;
|
|
var e = d.getElementById("editor");
|
|
|
|
switch(ext){
|
|
case "js":
|
|
ext = "javascript";
|
|
break;
|
|
case "py":
|
|
ext = "python";
|
|
break;
|
|
}
|
|
editor = ace.edit(e);
|
|
editor.session.setValue(text);
|
|
}
|
|
editor.session.setMode("ace/mode/"+ext);
|
|
editor.setTheme("ace/theme/clouds");
|
|
editor.setShowPrintMargin(false);
|
|
editor.setOptions({
|
|
enableBasicAutocompletion: true,
|
|
enableSnippets: true,
|
|
enableLiveAutocompletion: true
|
|
});
|
|
}
|
|
|
|
function onSave(fn){
|
|
let u8=new TextEncoder().encode(editor.session.getValue());let r='';for(let i=0;i<u8.byteLength;i++)r+=String.fromCharCode(u8[i]);location.href='i:0l'+fn+':'+btoa(r);
|
|
}
|
|
|