You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
richdocuments/js/test.html

25 lines
655 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>test</title>
<script type="text/javascript" charset="utf-8">
//var dojoConfig = {
//has: {
//'dojo-requirejs-api':1
//}
//}
</script>
<script src="dojo-amalgamation.js"></script>
<script type="text/javascript" charset="utf-8">
function main() {
require(["dojo/ready"], function(ready) {
ready(function(){alert("ready!");});
});
}
</script>
</head>
<body onload="main();">
</body>
</html>