31 lines
841 B
HTML
31 lines
841 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<link rel="stylesheet" href="./index.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Monaco Editor (running from release)</h2>
|
|
|
|
<div id="bar" style="margin-bottom: 6px;"></div>
|
|
<div style="clear:both"></div>
|
|
<div id="container" style="float:left;width:800px;height:450px;border: 1px solid grey"></div>
|
|
<div id="options" style="float:left;width:220px;height:450px;border: 1px solid grey"></div>
|
|
<div style="clear:both"></div>
|
|
|
|
<script src="../release/min/vs/loader.js"></script>
|
|
<script>
|
|
require.config({
|
|
paths: {
|
|
'vs': '../release/min/vs'
|
|
}
|
|
});
|
|
require(['vs/editor/editor.main'], function() {
|
|
require(['./index'], function() {});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html> |