42 lines
734 B
HTML
42 lines
734 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" />
|
|
<style>
|
|
#errors {
|
|
position:fixed;
|
|
top:0;
|
|
right:0;
|
|
font-size: 20px;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
body {
|
|
height: 100%;
|
|
}
|
|
#editor {
|
|
float:left;
|
|
width: 1250px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Smoke Test</h2>
|
|
|
|
<div id="control"></div>
|
|
<div id="editor"></div>
|
|
<div id="errors"></div>
|
|
<div style="clear:both"></div>
|
|
|
|
<script src="../metadata.js"></script>
|
|
<script src="dev-setup.js"></script>
|
|
<script>
|
|
loadEditor(function() {
|
|
require(['./smoketest'], function() {});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html> |