dijit
Version:
Dijit provides a complete collection of user interface controls based on Dojo, giving you the power to create web applications that are highly optimized for usability, performance, internationalization, accessibility, but above all deliver an incredible u
21 lines • 704 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=8">
<title>Demo: Basic Editor</title>
<link rel="stylesheet" href="../../themes/claro/claro.css" />
<script src="../../../dojo/dojo.js"
data-dojo-config="async: true, parseOnLoad: true"></script>
<script>
// Include the class
require(["dojo/has", "dijit/Editor", "dojo/parser", "dojo/domReady!"], function(has){
console.log("has(ie) == " + has("ie"));
});
</script>
</head>
<body class="claro" role="main">
<h1>Test of Editor on IE9 in IE8 Compatibility mode</h1>
<div data-dojo-type="dijit.Editor" aria-label="editor1" id="editor1"></div>
</body>
</html>