pulsar/static/index.html

34 lines
763 B
HTML

<!DOCTYPE html>
<html>
<head>
<title></title>
<script>
window.location.params = {}
var params = window.location.search.substring(1).split('&')
params.forEach(function(param) {
var pair = param.split("=")
window.location.params[pair[0]] = pair[1];
});
window.resourcePath = window.location.params.resourcePath
var bootstrapScript = window.location.params.bootstrapScript;
window.onload = function() {
try {
if (bootstrapScript) require(bootstrapScript);
}
catch (error) {
if (atom && atom.showDevTools) { atom.showDevTools(); }
console.error(error.stack || error);
}
}
</script>
<script src='../src/stdlib/require.js'></script>
</head>
<body>
</body>
</html>