intl-load.html revision 6f7d1d7ac34a30d5b28fc8ed66d3b9dc1a39777d
<html>
<head>
<title>Loader Intl Order Test</title>
</head>
<body>
<script>
YUI.add("mymod", function(Y) {
Y.MyMod = {
formatDate : function() {
return Y.DataType.Date.format(new Date(), {format:"%e %b"});
}
};
}, "3.0" ,{requires:["datatype-date"]});
YUI({filter:"raw"}).use(/* FIXES THE ISSUE: "datatype-date",*/ "mymod", function(Y) {
});
</script>
</body>
</html>