mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
Removing procedural edit work in progress for now
This commit is contained in:
parent
e8435b6218
commit
d8e5945d14
2 changed files with 0 additions and 41 deletions
|
@ -1,12 +0,0 @@
|
|||
Script.include("../toys/magBalls/constants.js");
|
||||
|
||||
OmniToolModuleType = "ProceduralEdit"
|
||||
|
||||
OmniToolModules.ProceduralEdit = function(omniTool, entityId) {
|
||||
this.omniTool = omniTool;
|
||||
this.entityId = entityId;
|
||||
|
||||
var window = new WebWindow('Procedural', "file:///C:/Users/bdavis/Git/hifi/examples/toys/proceduralEdit/ui.html", 640, 480, false);
|
||||
window.setVisible(true);
|
||||
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>ACE in Action</title>
|
||||
<style type="text/css" media="screen">
|
||||
#editor {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="editor">function foo(items) {
|
||||
var x = "All this is syntax highlighted";
|
||||
return x;
|
||||
}</div>
|
||||
|
||||
<script src="ace/noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script>
|
||||
var editor = ace.edit("editor");
|
||||
editor.setTheme("ace/theme/monokai");
|
||||
editor.getSession().setMode("ace/mode/javascript");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue