Skip to main content
summaryrefslogtreecommitdiffstats
blob: 845558808e4ed3ad3b017ac84e8bd30f1cb54239 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<link rel="stylesheet" type="text/css" href="%s"/>
<script src="%s"></script>
<script>
	require(["orion/editor/edit"], function(edit) {
		window.editor = edit({className: "editor"})[0];
	});
</script>
</head>
<body>
<h2>Sample CSS Editor</h2>
<pre id="regulus" class="editor" data-editor-lang="css">
%s
</pre>
</body>
</html>

Back to the top