mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
22 lines
496 B
HTML
22 lines
496 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Playground</title>
|
|
<style>
|
|
#editor {
|
|
width: 300px;
|
|
height: 300px;
|
|
border: solid 1px;
|
|
}
|
|
</style>
|
|
<script src="../../modules/jquery/jquery.js"></script>
|
|
<script src="../../modules/rangy/rangy-core.js"></script>
|
|
<script src="playground.js"></script>
|
|
</head>
|
|
<body>
|
|
<div contenteditable="true" id="editor">
|
|
</div>
|
|
</body>
|
|
</html>
|