0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 23:40:35 -05:00
Squire/Demo.html

23 lines
660 B
HTML
Raw Normal View History

2011-10-28 22:15:21 -05:00
<!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]>
2012-03-29 00:26:01 -05:00
<script type="text/javascript" src="build/ie8.js"></script>
<![endif]-->
<link href="build/Squire-UI.css" rel="stylesheet" type="text/css" />
<script src="build/Squire-UI.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
UI = new SquireUI({replace: 'textarea#foo', height: 200});
});
</script>
2011-10-28 22:15:21 -05:00
</head>
<body>
<h1>HTML Editor Test</h1>
<textarea id="foo"></textarea>
<div id="editor"></div>
2011-10-28 22:15:21 -05:00
</body>
</html>