baseevents.html revision c227b72a63f719441bd6d42f6345f5f24ccd8654
<html>
<head>
<title>Base Event Test</title>
</head>
<body>
<script>
YUI({filter:"raw"}).use("base", function(Y) {
var p = new Parent({
after: {
'child:test' : function(e) {
Y.log("parent after child:test");
}
},
on: {
'child:test' : function(e) {
Y.log("parent on child:test");
}
}
});
var c = new Child({bubbleTargets:[p]});
c.fire("test");
});
</script>
</body>
</html>