mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-13 17:48:17 +00:00
32 lines
569 B
Smarty
32 lines
569 B
Smarty
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>VisualEditor Examples</title>
|
||
|
{{VE-LOAD-HEAD}}
|
||
|
<script>
|
||
|
function loadInlineExample(code, options, callback) {
|
||
|
try {
|
||
|
eval(code);
|
||
|
callback && callback(true);
|
||
|
} catch (e) {
|
||
|
document.body.appendChild(document.createTextNode(e));
|
||
|
callback && callback(false, e);
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow-y: scroll;
|
||
|
background: #fff;
|
||
|
font: normal 1em/1.5 sans-serif;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
{{VE-LOAD-BODY}}
|
||
|
</body>
|
||
|
</html>
|