mirror of
https://github.com/nasa/openmct.git
synced 2025-05-31 22:50:49 +00:00
[Structure] Add index.html
Add index.html, which will serve as the main point-of-entry for the full application. WTD-519.
This commit is contained in:
parent
0bf0912bf8
commit
4f08d43037
24
index.html
Normal file
24
index.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head lang="en">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title></title>
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="platform/framework/lib/require.js">
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- This is a placeholder for validating initial project structure -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
require(
|
||||||
|
["platform/framework/src/Temporary"],
|
||||||
|
function (Temporary) {
|
||||||
|
"use strict";
|
||||||
|
document.writeln(new Temporary().someMethod());
|
||||||
|
}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
x
Reference in New Issue
Block a user