Created
October 3, 2009 21:30
-
-
Save lsmith/200892 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // How to snoop on log statements from another YUI instance | |
| YUI().use('event', function (Y) { | |
| Y.Global.on('yui:log', function (msg, cat, src) { | |
| // You'll need to escape msg if you want to display it | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment