mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 07:13:08 -05:00
It's working http://www.reactiongifs.com/r/lmsac.gif
This commit is contained in:
parent
2dbae0dda9
commit
9687fb9cb2
3 changed files with 13 additions and 2 deletions
11
Demo.html
11
Demo.html
|
@ -3,12 +3,13 @@
|
|||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta charset="UTF-8">
|
||||
<title>HTML Editor Test</title>
|
||||
<title>Squire</title>
|
||||
<!--[if IE 8]>
|
||||
<script type="text/javascript" src="build/ie8.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<link href="build/Squire-UI.css" rel="stylesheet" type="text/css" />
|
||||
<link href="build/bootstrap.css" rel="stylesheet" type="text/css" />
|
||||
<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>
|
||||
|
@ -20,7 +21,13 @@
|
|||
</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>
|
||||
<div id="editor"></div>
|
||||
</body>
|
||||
</html>
|
3
Makefile
3
Makefile
|
@ -15,6 +15,9 @@ fonts:
|
|||
jQuery:
|
||||
cp -r source/assets/jQuery build
|
||||
|
||||
bootstrap:
|
||||
cp -r source/assets/bootstrap build
|
||||
|
||||
build/Squire-UI.html: source/Squire-UI.html
|
||||
mkdir -p $(@D)
|
||||
cp $^ $@
|
||||
|
|
|
@ -88,6 +88,7 @@ input[type=text] {
|
|||
border-left:none;
|
||||
}
|
||||
.menu {
|
||||
text-align: center;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
|
|
Loading…
Reference in a new issue