mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 07:13:08 -05:00
3f5233c61a
Was removing the crucial empty text node that these browsers use to indicate and editable line.
75 lines
2 KiB
HTML
75 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>HTML Editor Test</title>
|
|
<style type="text/css" media="screen">
|
|
body {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
padding: 50px;
|
|
width: 540px;
|
|
font: 400 14px/1.24 helvetica, arial, sans-serif;
|
|
text-shadow: 0 1px 0 white;
|
|
}
|
|
h1 {
|
|
font-size: 1.95em;
|
|
}
|
|
iframe {
|
|
border: 1px solid #888;
|
|
}
|
|
span {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
p {
|
|
margin: 5px 0;
|
|
}
|
|
</style>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var editor;
|
|
document.addEventListener( 'click', function ( e ) {
|
|
var id = e.target.id,
|
|
value;
|
|
if ( id && editor && editor[ id ] ) {
|
|
if ( e.target.className === 'prompt' ) {
|
|
value = prompt( 'Value:' );
|
|
}
|
|
editor[ id ]( value );
|
|
}
|
|
}, false );
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>HTML Editor Test</h1>
|
|
<header>
|
|
<p>This is a really simple demo, with the most trivial of UI integrations</p>
|
|
<p>
|
|
<span id="bold">Bold</span>
|
|
<span id="removeBold">Unbold</span>
|
|
<span id="italic">Italic</span>
|
|
|
|
<span id="removeItalic">Unitalic</span>
|
|
<span id="underline">Underline</span>
|
|
<span id="removeUnderline">Deunderline</span>
|
|
|
|
<span id="setFontSize" class="prompt">Font size</span>
|
|
<span id="setFontFace" class="prompt">Font face</span>
|
|
</p>
|
|
<p>
|
|
<span id="incQuoteLevel">Quote</span>
|
|
<span id="decQuoteLevel">Dequote</span>
|
|
|
|
<span id="makeUnorderedList">List</span>
|
|
<span id="removeList">Unlist</span>
|
|
|
|
<span id="insertImage" class="prompt">Insert image</span>
|
|
<span id="setHTML" class="prompt">Set HTML</span>
|
|
|
|
<span id="undo">Undo</span>
|
|
<span id="redo">Redo</span>
|
|
</p>
|
|
</header>
|
|
<iframe src="build/document.html" onload="top.editor=this.contentWindow.editor" width="500" height="500"></iframe>
|
|
</body>
|
|
</html>
|