mediawiki-extensions-Visual.../demos/ve/index.html.template
Timo Tijhof 370b07ffaf demo: Convert VisualEditor standalone demo to pure HTML+JS
Change-Id: I9a93abce933e91881e553c0bdb26f31065cf4cda
2013-12-19 03:12:13 +01:00

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>