mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 21:27:52 +00:00
4f08d43037
Add index.html, which will serve as the main point-of-entry for the full application. WTD-519.
24 lines
548 B
HTML
24 lines
548 B
HTML
<!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> |