2013-12-19 01:07:54 +00:00
|
|
|
<!--
|
|
|
|
/*!
|
2013-12-14 23:04:08 +00:00
|
|
|
* VisualEditor standalone demo
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
2013-12-19 01:07:54 +00:00
|
|
|
-->
|
2013-12-14 23:04:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-12-18 04:33:22 +00:00
|
|
|
<meta charset="utf-8">
|
2013-12-14 23:04:08 +00:00
|
|
|
<title>VisualEditor Standalone Demo</title>
|
|
|
|
|
|
|
|
<!-- STYLES -->
|
|
|
|
|
|
|
|
<!-- demo styles -->
|
|
|
|
<link rel="stylesheet" href="demo.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-12-19 01:07:54 +00:00
|
|
|
<ul class="ve-demo-menu">
|
|
|
|
<!-- MENU -->
|
2013-12-14 23:04:08 +00:00
|
|
|
</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>
|
|
|
|
|
2013-12-18 04:33:22 +00:00
|
|
|
<!-- SCRIPTS -->
|
2013-12-14 23:04:08 +00:00
|
|
|
|
2013-12-18 04:33:22 +00:00
|
|
|
<!-- demo scripts -->
|
|
|
|
<script src="demo.js"></script>
|
2013-12-14 23:04:08 +00:00
|
|
|
</body>
|
|
|
|
</html>
|