resize-window.html revision 9cdb1aa8d3a7901f789c2ad7a6ea00e804a9abeb
1968N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
1968N/A<html>
1968N/A<head>
1968N/A <title>Example</title>
1968N/A</head>
1968N/A<body>
1968N/A
1968N/A<p>This is a test. <strong>This is a test</strong>. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. </p>
1968N/A
1968N/A<ul>
1968N/A <li>Test</li>
1968N/A <li>Test</li>
1968N/A <li>Test</li>
1968N/A <li>Test</li>
1968N/A <li>Test</li>
1968N/A</ul>
1968N/A
1968N/A
1968N/A<script src="http://yui.yahooapis.com/3.0.0/build/yui/yui-min.js"></script>
1968N/A<script>
1968N/AYUI({
1968N/A debug: true
1968N/A}).use('node', 'event', function(Y) {
1968N/A var fn = function(e) {
1968N/A Y.log('window resize');
1968N/A };
1968N/A
1968N/A // var handle = Y.on('windowresize', fn);
1968N/A // Y.detach('windowresize', fn);
1968N/A // handle.detach('windowresize', fn);
1968N/A
1968N/A var handle = Y.on('category|windowresize', fn);
1968N/A // Y.detach('category|windowresize', fn);
1968N/A
1968N/A});
1968N/A</script>
1968N/A</body>
2028N/A</html>
2028N/A
2028N/A