Fix filename parsing

This commit is contained in:
fvanroie 2021-05-21 18:56:32 +02:00
parent c1d4fad16e
commit 8d16dfb186
2 changed files with 64 additions and 66 deletions

View File

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<!doctypehtml>
<html lang=en>
<head>
<meta charset='utf-8'>
<meta charset=utf-8>
<title>File Editor</title>
<style type="text/css" media="screen">
<style media=screen>
.cm {
z-index: 300;
position: absolute;
@ -92,7 +92,6 @@
from {
padding: 0
}
to {
padding: 0
}
@ -425,15 +424,14 @@
createFileUploader("uploader", createTree("tree", t), t), e.file && (document.getElementById("upload-path").value = e.file)
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js" type="text/javascript"
charset="utf-8"></script>
<script charset=utf-8 src=https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js></script>
</head>
<body onload="onBodyLoad();">
<div id="uploader"></div>
<div id="tree"></div>
<div id="editor"></div>
<div id="preview" style="display:none;"></div><iframe id=download-frame style='display:none;'></iframe>
<body onload=onBodyLoad();>
<div id=uploader></div>
<div id=tree></div>
<div id=editor></div>
<div id=preview style=display:none;></div><iframe id=download-frame style=display:none;></iframe>
</body>
</html>

Binary file not shown.