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

Binary file not shown.