Fixed: main div in index.html had wrong id.

The div's id was changed to cappuccino, and it was supposed to be cappuccino-body, which broke code that relied on the DOM remaining stable during startup.
This commit is contained in:
Aparajita Fishman
2013-08-15 10:40:18 -04:00
parent c9dae8ced4
commit f1077719fb
6 changed files with 24 additions and 24 deletions
@@ -68,19 +68,19 @@
}
/* We need a body wrapper because Cappuccino is unhappy if we change the body element */
#cappuccino {
#cappuccino-body {
width: 100%;
height: 100%;
background-color: white;
}
#cappuccino .container {
#cappuccino-body .container {
display: table;
margin: 0 auto;
height: 100%;
}
#cappuccino .content {
#cappuccino-body .content {
display: table-cell;
height: 100%;
vertical-align: top;
@@ -137,7 +137,7 @@
</head>
<body>
<div id="cappuccino">
<div id="cappuccino-body">
<div class="container">
<div class="content">
<script type="text/javascript">