mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
Forgot to add the 'no more frames' file.
This commit is contained in:
@@ -1,7 +1,67 @@
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#app-horizontal {
|
||||
background-color: orange;
|
||||
display: -webkit-box;
|
||||
height: 100%;
|
||||
|
||||
-webkit-box-orient: horizontal;
|
||||
}
|
||||
|
||||
#app-vertical {
|
||||
background-color: yellow;
|
||||
display: -webkit-box;
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.main {
|
||||
width: 100%;
|
||||
-webkit-box-flex: 1;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.left {
|
||||
width: 100px;
|
||||
background-color: gray;
|
||||
}
|
||||
|
||||
.right {
|
||||
width: 100px;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
.top {
|
||||
height: 100px;
|
||||
background-color: purple;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
height: 100px;
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<frameset cols="*" frameborder=no framespacing=0 border=0>
|
||||
<frame src="tabs.html" />
|
||||
</frameset>
|
||||
<body>
|
||||
<div id='app-horizontal'>
|
||||
<div id='app-vertical'>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<script src="vendor/underscore.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="vendor/jquery.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script>
|
||||
var tabs = require('lib/tabs')
|
||||
tabs.show()
|
||||
</script>
|
||||
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user