added an empty div at the bottom of the page containing nodes

This commit is contained in:
Devin Howard 2012-12-30 23:04:30 -05:00
parent 293b3727a2
commit abe34696da
3 changed files with 19 additions and 1 deletions

View file

@ -73,10 +73,22 @@ a {
text-decoration:none;
}
/*
* Utility
*/
.clearfloat {
clear:both;
}
.hidden {
display: none;
}
/*
* Layout stuffs
*/
.new_session,
.new_user,
.new_map,

View file

@ -0,0 +1,5 @@
<script type="text/javascript">
//create a global array we can fill with id's of loaded nodes
var loaded_nodes = new Array();
</script>
<div id="loaded_nodes" class="hidden"></div>

View file

@ -60,5 +60,6 @@
<% end %>
<%= render :partial => 'layouts/ga' if Rails.env.production? %>
<%= render :partial => 'layouts/nodeinfo' %>
</body>
</html>
</html>