pulsar/static/index.html

24 lines
466 B
HTML
Raw Normal View History

2012-08-22 04:22:43 +04:00
<html>
<head>
<script src='../src/stdlib/require.js'></script>
2012-08-22 04:22:43 +04:00
<script>
window.onload = function() {
try {
var bootstrapScript = window.location.search.split('=')[1]
console.log(bootstrapScript);
if (bootstrapScript) require(bootstrapScript);
2012-08-22 04:22:43 +04:00
}
catch (error) {
//$native.showDevTools();
2012-08-22 04:22:43 +04:00
console.error(error.stack || error);
}
}
</script>
</head>
<body>
2012-08-23 23:38:52 +04:00
LET'S DO THIS!
2012-08-22 04:22:43 +04:00
</body>
</html>