mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
370b07ffaf
Change-Id: I9a93abce933e91881e553c0bdb26f31065cf4cda
51 lines
1 KiB
Plaintext
51 lines
1 KiB
Plaintext
<!--
|
|
/*!
|
|
* VisualEditor standalone demo
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>VisualEditor Standalone Demo</title>
|
|
|
|
<!-- STYLES -->
|
|
|
|
<!-- demo styles -->
|
|
<link rel="stylesheet" href="demo.css">
|
|
</head>
|
|
<body>
|
|
<ul class="ve-demo-menu">
|
|
<!-- MENU -->
|
|
</ul>
|
|
<div class="ve-demo-editor"></div>
|
|
<div class="ve-demo-utilities">
|
|
<p>
|
|
<div class="ve-demo-utilities-commands"></div>
|
|
</p>
|
|
<table id="ve-dump" class="ve-demo-dump">
|
|
<thead>
|
|
<th>Linear model</th>
|
|
<th>View tree</th>
|
|
<th>Model tree</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td width="30%" id="ve-linear-model-dump"></td>
|
|
<td id="ve-view-tree-dump" style="vertical-align: top;"></td>
|
|
<td id="ve-model-tree-dump" style="vertical-align: top;"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- SCRIPTS -->
|
|
|
|
<!-- demo scripts -->
|
|
<script src="demo.js"></script>
|
|
</body>
|
|
</html>
|