Created
July 30, 2010 16:50
-
-
Save neonstalwart/500884 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html dir="ltr"> | |
<head> | |
<style type="text/css"> | |
body, html { font-family:helvetica,arial,sans-serif; font-size:90%; } | |
</style> | |
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js" | |
djConfig="parseOnLoad: true"> | |
</script> | |
<script type="text/javascript"> | |
dojo.require("dijit.layout.TabContainer"); | |
dojo.require("dijit.layout.ContentPane"); | |
</script> | |
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/tundra/tundra.css" | |
/> | |
</head> | |
<body class=" tundra "> | |
<div dojoType="dijit.layout.TabContainer" style="width: 400px; height: 100px;" | |
tabPosition="left-h" tabStrip="true"> | |
<div dojoType="dijit.layout.ContentPane" title="My first tab" selected="true"> | |
Lorem ipsum and all around... | |
</div> | |
<div dojoType="dijit.layout.ContentPane" title="My second tab"> | |
Lorem ipsum and all around - second... | |
</div> | |
<div dojoType="dijit.layout.ContentPane" title="My last tab"> | |
Lorem ipsum and all around - last... | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment