Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html>
- <head>
- <script src="http://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/ace.js"></script>
- <style type="text/css" media="screen">
- #editor {
- width: 100%;
- height: 100%;
- }
- #container
- {
- position: absolute;
- top: 50;
- left: 50;
- width: 50%;
- height: 50%;
- }
- </style>
- </head>
- <body>
- <form action="http://71.238.153.166/lua.lua" method="post" onsubmit="onSubmit()">
- <input type="hidden" id="htext" name="text"/>
- <div id="container">
- <div id="editor">print("Hello World")</div><br/>
- <input type="submit" value="Submit"/>
- </div>
- </form>
- <script>
- var editor = ace.edit("editor");
- editor.setTheme("ace/theme/eclipse");
- editor.getSession().setMode("ace/mode/lua");
- function onSubmit()
- {
- document.getElementById('htext').value = editor.getValue();
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement