yui3et.html revision 0d1c0eaa8a51a181149d802dacbe840f9990e7f5
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<html lang="en">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<head>
ed22c7109fc5dd9e1b7a5d0333bdc7ad2718e2abYuri Pankov <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <title>EventTarget</title>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<!--
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <script type="text/javascript" src="http://yuibuild.corp.yahoo.com:9999/yhudson/job/yui3/1766/artifact/build_tmp/artifacts/dist/yui/build/yui/yui.js"></script>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe -->
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe <script type="text/javascript" src="/build/yui/yui.js"></script>
ed22c7109fc5dd9e1b7a5d0333bdc7ad2718e2abYuri Pankov <script type="text/javascript">
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe YUI({filter:"raw"}).use("event-custom-complex", function (Y) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe var et1 = new Y.EventTarget();
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.publish("A", {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe queueable: false,
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe emitFacade: true,
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe defaultFn: function (e) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Y.log("A:default");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe }
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.publish("B", {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe queueable: false,
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe emitFacade: true,
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe defaultFn: function (e) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Y.log("B:default");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe }
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.on("A", function (e) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Y.log("A:on");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.after("A", function (e) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.fire("B");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Y.log("A:after");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.on("B", function (e) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Y.log("B:on");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.after("B", function (e) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe Y.log("B:after");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe function test() {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe et1.fire("A");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe }
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe test();
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe });
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe </script>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe</head>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe<body>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe</body>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe</html>
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe