mirror of
https://github.com/fastmail/Squire.git
synced 2025-01-03 13:16:31 -05:00
e0043013b1
Need to combat the problem of multiple instances.
22 lines
No EOL
587 B
HTML
22 lines
No EOL
587 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta charset="UTF-8">
|
|
<title>HTML Editor Test</title>
|
|
<!--[if IE 8]>
|
|
<script type="text/javascript" src="build/ie8.js"></script>
|
|
<![endif]-->
|
|
<script src="build/Squire-UI.js" type="text/javascript"></script>
|
|
<script>
|
|
window.addEventListener('load', function () {
|
|
var editor = new SquireUI({div: '#editor'});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>HTML Editor Test</h1>
|
|
<textarea id="foo"></textarea>
|
|
<div id="editor"></div>
|
|
</body>
|
|
</html> |