mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
30 lines
780 B
HTML
30 lines
780 B
HTML
<!DOCTYPE html>
|
|
<html style="background: #fff">
|
|
<head>
|
|
<title></title>
|
|
|
|
<script>
|
|
window.onload = function() {
|
|
var path = require('path');
|
|
var currentWindow = require('remote').getCurrentWindow();
|
|
try {
|
|
require('vm-compatibility-layer');
|
|
require('coffee-script');
|
|
require(path.resolve(__dirname, '..', 'src', 'coffee-cache')).register();
|
|
require(currentWindow.loadSettings.bootstrapScript);
|
|
currentWindow.emit('window:loaded');
|
|
}
|
|
catch (error) {
|
|
currentWindow.setSize(800, 600);
|
|
currentWindow.center();
|
|
currentWindow.show();
|
|
currentWindow.openDevTools();
|
|
console.error(error.stack || error);
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body tabindex="-1">
|
|
</body>
|
|
</html>
|