mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
For now, I'm removing the flexbox treatment of #app-vertical because the file finder just needs to overlay the bottom and absolute positioning is simpler. I'm also using requireStylesheet to load the file finders CSS instead of a link tag.
15 lines
212 B
HTML
15 lines
212 B
HTML
<html>
|
|
<head>
|
|
<script src='src/stdlib/require.js'></script>
|
|
|
|
<script>
|
|
window.onload = function() {
|
|
if ($bootstrapScript) require($bootstrapScript);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|
|
|