resize.html revision 132071043437e241d6e56b435e6ee010de2f3e9d
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Resize Manual Test</title>
<script src="/build/yui/yui-min.js"></script>
<style>
</style>
<body class="yui3-skin-sam">
<div id="resize" style="width:100px; height:100px; background-color:#abc;">hello</div>
<script>
YUI({filter: 'raw'},{ skin: 'sam' }).use('resize', function(Y) {
var resize = new Y.Resize({
//Selector of the node to resize
node: '#resize'
});
});
</script>
</body>
</html>