4
<title>Widget uiEvents</title>
7
<script src="../../../../build/yui/yui.js"></script>
9
YUI({filter:"raw"}).use("widget", function(Y) {
10
var w = new Y.Widget({
15
h = function(e) { Y.log(e.type); };
17
w.get("contentBox").append("Some Content For My Widget");
25
w.on("widget:mouseup", h);
26
w.on("foo|widget:mouseup", h);
29
w.after("widget:mouseup", h);
30
w.after("foo|widget:mouseup", h);
31
w.after("mouseup", h);
b'\\ No newline at end of file'