pulsar/static/index.html
Kevin Sawicki 64332736e1 Add back background on html element
This prevents a flash of white from displaying while the CSS loads
2013-01-23 08:22:46 -08:00

33 lines
827 B
HTML

<!DOCTYPE html>
<html style="background: #333">
<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[decodeURIComponent(pair[0])] = decodeURIComponent(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>