mirror of
https://github.com/atom/atom.git
synced 2026-01-21 04:48:12 -05:00
24 lines
466 B
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>
|
|
|