intl-load.html revision 6f7d1d7ac34a30d5b28fc8ed66d3b9dc1a39777d
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Loader Intl Order Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<script src="/build/yui/yui.js"></script>
<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) {
Y.log(Y.MyMod.formatDate());
});
</script>
</body>
</html>