Files
atom/static/index.html

24 lines
466 B
HTML

<html>
<head>
<script src='../src/stdlib/require.js'></script>
<script>
window.onload = function() {
try {
var bootstrapScript = window.location.search.split('=')[1]
console.log(bootstrapScript);
if (bootstrapScript) require(bootstrapScript);
}
catch (error) {
//$native.showDevTools();
console.error(error.stack || error);
}
}
</script>
</head>
<body>
LET'S DO THIS!
</body>
</html>