Created
August 10, 2012 16:14
-
-
Save eduardolundgren/3315306 to your computer and use it in GitHub Desktop.
Multiple YUI versions proposal
This file contains 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
<script> | |
YUI_GLOBAL_NAMESPACE = 'YUI360'; | |
</script> | |
<script src="yui3.6.0.js"> | |
function(Y, YUI) { 3.6.0 YUI. } | |
<script> | |
YUI_GLOBAL_NAMESPACE = 'YUI341'; | |
</script> | |
<script src="yui3.4.1.js"> | |
function(Y, YUI) { | |
YUI360().use('treeview', function(Y360) { | |
Y360 | |
}); | |
} | |
<script> | |
YUI_GLOBAL_NAMESPACE = null; | |
</script> | |
<script src="yui3.x.y.js"> | |
function(Y, YUI) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment