mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
c41b60021d
Didn't move unicodejs because it doesn't have its own repo and is currently mastered in this repo Change-Id: I14ab4bd641077d993ac235d8bcdcf8e50a1a72a7
113 lines
2.5 KiB
HTML
113 lines
2.5 KiB
HTML
<!--
|
|
/*!
|
|
* VisualEditor trigger 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 Trigger Demo</title>
|
|
<style>
|
|
body {
|
|
font-size: 1em;
|
|
font-family: sans-serif;
|
|
cursor: default;
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
.flow li {
|
|
display: inline-block;
|
|
}
|
|
.stack li {
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
padding: 0.75em;
|
|
margin: 0.125em;
|
|
border: solid 1px #ccc;
|
|
background-color: #eee;
|
|
border-radius: 0.5em;
|
|
}
|
|
.key {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
color: #fff;
|
|
background-color: #555;
|
|
margin: 0.125em;
|
|
padding: 0.75em;
|
|
border-radius: 0.25em;
|
|
border: outset 2px #555;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.alias {
|
|
color: #bbb;
|
|
}
|
|
.active {
|
|
border: inset 2px #444;
|
|
background-color: #333;
|
|
text-shadow: 0 0 0.5em #fff
|
|
}
|
|
table {
|
|
width: 100%;
|
|
}
|
|
td {
|
|
padding: 3em;
|
|
vertical-align: top;
|
|
}
|
|
h1 {
|
|
padding: 1.5em;
|
|
padding-bottom: 0;
|
|
margin: 0;
|
|
}
|
|
h2 {
|
|
font-weight: normal;
|
|
}
|
|
.title {
|
|
color: #777;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1><span class="title">Key sequence: </span><span id="trigger"></span></h1>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<h2 class="title">Modifiers</h2>
|
|
<ul id="modifiers" class="flow"></ul>
|
|
</td>
|
|
<td>
|
|
<h2 class="title">Primary</h2>
|
|
<ul id="primary" class="flow"></ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<h2 class="title">Aliases</h2>
|
|
<ul id="aliases" class="stack"></ul>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script src="../../lib/jquery/jquery.js"></script>
|
|
<script src="../../lib/oojs/oojs.js"></script>
|
|
<script src="../../modules/unicodejs/unicodejs.js"></script>
|
|
<script src="../../modules/unicodejs/unicodejs.graphemebreak.js"></script>
|
|
<script src="../../modules/unicodejs/unicodejs.graphemebreakproperties.js"></script>
|
|
<script src="../../modules/unicodejs/unicodejs.textstring.js"></script>
|
|
<script src="../../modules/unicodejs/unicodejs.wordbreak.js"></script>
|
|
<script src="../../modules/unicodejs/unicodejs.wordbreakproperties.js"></script>
|
|
<script src="../../modules/ve/ve.js"></script>
|
|
<script src="../../modules/ve/ui/ve.ui.js"></script>
|
|
<script src="../../modules/ve/ui/ve.ui.Trigger.js"></script>
|
|
<script src="trigger.js"></script>
|
|
</body>
|
|
</html>
|