Created
January 18, 2010 00:42
-
-
Save efleming969/279699 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
dojo.addOnLoad(function(){ | |
var mb = dijit.byId("mainBorder"); | |
mb.addChild(new dijit.layout.ContentPane({ | |
content: new widgets.Entries({}), | |
region:"center" | |
})); | |
}); | |
</script> | |
</head> | |
<body class="tundra" id="test"> | |
<div id="mainBorder" dojoType="dijit.layout.BorderContainer" style="width:100%;height:100%"> | |
<!-- ####### @group layout top ####### --> | |
<div dojoType="dijit.layout.ContentPane" region="top" title="Home Page" > | |
<a href="#m=menu"><img alt="home" src="images/home.png" /></a> | |
<!--<div dojoType="widgets.Notifier"></div>--> | |
</div> | |
<!-- ####### @group layoug main ####### --> | |
</div> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment