Skip to content

Commit

Permalink
Better real-estate usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin committed May 24, 2012
1 parent 2be5a3c commit 2eb3caf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion static/vb2.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
padding: 0; padding: 0;
text-indent: 0; text-indent: 0;
} }

#nodes li {
display: inline;
margin-right: 1em;
}
</style> </style>
</head> </head>
<body> <body>
Expand All @@ -61,7 +66,9 @@ <h2>Nodes</h2>
$("#clusterid").val(clusterInfo.cluster); $("#clusterid").val(clusterInfo.cluster);
$("#bucketid").val(clusterInfo.bucket || 'default'); $("#bucketid").val(clusterInfo.bucket || 'default');


var chart = makeVBStatThing(window.innerWidth - 50, 600, '#levels'); var chart = makeVBStatThing(window.innerWidth - 50,
window.innerHeight - 100,
'#levels');


function updateGraphs(json) { function updateGraphs(json) {
chart(json); chart(json);
Expand Down

0 comments on commit 2eb3caf

Please sign in to comment.