simplest_1dial.html revision 0725a936e79c1ff74627a56d59c60e219016d7ca
<!DOCTYPE HTML>
<html>
<head>
<title>simplest 1dial</title>
</head>
<style>
</style>
<body class="yui3-skin-sam">
<div tabindex="0" role="button"><!--screen reader needs another tabstop or dial keyboard listeners don't work for some reason. Every other pageload-->
hello
</div>
<div class="dial-container"></div>
</body>
</html>
<script>
//
YUI({filter:'raw'}).use("dial", function(Y) { //, filter:'raw' this make it really hard to clear cache on iPad
var dial = new Y.Dial({
});
dial.render(".dial-container");
});
</script>