pulsar/index.html
Corey Johnson & Nathan Sobo 19c030360c Better error reporting
2012-04-05 14:07:52 -06:00

21 lines
341 B
HTML

<html>
<head>
<script src='src/stdlib/require.js'></script>
<script>
window.onload = function() {
try {
if ($bootstrapScript) require($bootstrapScript);
}
catch (error) {
$native.showDevTools();
console.error(error.stack || error);
}
}
</script>
</head>
<body>
</body>
</html>