Skip to content

Commit

Permalink
this should undo the merge from this: simanek#3
Browse files Browse the repository at this point in the history
  • Loading branch information
simanek committed May 25, 2012
1 parent aa56f72 commit 724d3d5
Showing 1 changed file with 15 additions and 20 deletions.
35 changes: 15 additions & 20 deletions example.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!doctype html>
<html>
<head>
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1.0,width=device-width" />
<title>The Heads-Up Grid Example</title>
Expand All @@ -10,22 +10,17 @@
<script src="headsupgrid/hugrid.js"></script>
<script type="text/javascript">
$(document).ready(function() {

// Create Heads-Up Grid accepting all defaults
// var hugrid = new $.headsUpGrid();

// Create Heads-Up Grid with custom options
var hugrid = new $.headsUpGrid({
pageUnits: '%',
colUnits: '%',
pageWidth: 94,
columns: 2,
columnWidth: 48,
gutterWidth: 4,
pageTopMargin: 35,
rowHeight: 20,
showGridOnload: true
});
pageUnits = 'px';
colUnits = 'px';
pagewidth = 960;
columns = 6;
columnwidth = 140;
gutterwidth = 24;
pagetopmargin = 35;
rowheight = 20;
gridonload = 'off';
makehugrid();
setgridonload();
});
</script>
</head>
Expand All @@ -35,7 +30,7 @@
<div class="page">
<h1>The Heads-Up Grid</h1>
<p id="subhead"><a href="http://bohemianalps.com/tools/grid/">The Heads-Up Grid</a> is an overlay grid for use during in-browser website development, built with HTML + CSS + JavaScript.</p>

<div class="cols cols3">
<div class="col">
<h2>I’m Droppin’ Science</h2>
Expand Down

0 comments on commit 724d3d5

Please sign in to comment.