Created
June 25, 2010 16:18
-
-
Save caridy/453071 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
<!doctype html> | |
<html> | |
<head> | |
<title>Event Binder Evolution</title> | |
</head> | |
<body> | |
<div id="doc"> | |
<div id="democlick"> | |
<p>Placeholder for <a href="http://yuilibrary.com/">click</a> listener</p> | |
</div> | |
</div> | |
<!-- YUI 3 Seed //--> | |
<script type="text/javascript" src="http://yui.yahooapis.com/3.1.1/build/yui/yui-min.js"></script> | |
<!-- Initialization process //--> | |
<script type="text/javascript"> | |
YUI({ | |
modules: { | |
'my-custom-module': { | |
fullpath: './my-custom-module.js' | |
} | |
} | |
}).use('my-custom-module', function(Y) { | |
// my custom modules set the listeners during the initialization | |
Y.MyApp.init(); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment