32 lines
725 B
HTML
32 lines
725 B
HTML
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta http-equiv="refresh" content="0;url=demo/" />
|
||
|
|
<link rel="import" href="./bower_components/polymer/polymer-element.html">
|
||
|
|
<link rel="import" href="./bower_components/polymer/lib/elements/dom-bind.html">
|
||
|
|
<link rel="import" href="./monaco-editor.html">
|
||
|
|
<title>monaco-editor</title>
|
||
|
|
<style>
|
||
|
|
#editor {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
html,body {
|
||
|
|
margin : 0px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div id="editor"></div>
|
||
|
|
<script>
|
||
|
|
window.addEventListener('message', receiveMessage, false);
|
||
|
|
parent.postMessage('ready', parent.document.location.href);
|
||
|
|
function receiveMessage(event) {
|
||
|
|
console.log(event);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|