0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2025-01-03 13:16:31 -05:00
Squire/Demo.html

33 lines
999 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>Squire</title>
<!--[if IE 8]>
2012-03-29 00:26:01 -05:00
<script type="text/javascript" src="build/ie8.js"></script>
<![endif]-->
2014-07-10 23:57:46 -05:00
<link href="build/Squire-UI.css" rel="stylesheet" type="text/css" />
<link href="build/bootstrap.css" rel="stylesheet" type="text/css" />
2014-07-10 23:57:46 -05:00
<script src="build/jQuery/jQuery.js" type="text/javascript"></script>
<script src="build/squire-raw.js" type="text/javascript"></script>
<script src="build/Squire-UI.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
UI = new SquireUI({replace: 'textarea#foo', height: 700});
});
</script>
2011-10-28 22:15:21 -05:00
</head>
<body>
<h1>HTML Editor Test</h1>
<header class="header">
<div class="wrapper">
<h1>Squire</h1>
<h2>The Rich Text Editor the internet needs.</h2>
</div>
</header>
<textarea id="foo"></textarea>
2011-10-28 22:15:21 -05:00
</body>
</html>