2011-10-28 22:15:21 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2013-01-14 18:32:21 -05:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
2012-07-01 21:41:38 -05:00
|
|
|
<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]-->
|
2014-07-08 00:36:25 -05:00
|
|
|
<link href="build/Squire-UI.css" rel="stylesheet" type="text/css" />
|
2014-07-07 07:35:28 -05:00
|
|
|
<script src="build/Squire-UI.js" type="text/javascript"></script>
|
2014-07-07 18:44:09 -05:00
|
|
|
<script>
|
2014-07-08 00:36:25 -05:00
|
|
|
$(document).ready(function () {
|
2014-07-09 21:01:00 -05:00
|
|
|
UI = new SquireUI({replace: 'textarea#foo', height: 200});
|
2014-07-07 18:44:09 -05:00
|
|
|
});
|
|
|
|
</script>
|
2011-10-28 22:15:21 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>HTML Editor Test</h1>
|
2014-07-07 07:35:28 -05:00
|
|
|
<textarea id="foo"></textarea>
|
2014-07-07 18:44:09 -05:00
|
|
|
<div id="editor"></div>
|
2011-10-28 22:15:21 -05:00
|
|
|
</body>
|
2014-07-07 18:44:09 -05:00
|
|
|
</html>
|