88 lines
1.8 KiB
HTML
88 lines
1.8 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
|
|
<!-- require.js -->
|
|
<script src="require.js"></script>
|
|
<script>
|
|
require.config({
|
|
packages: [
|
|
{
|
|
name: 'JSONEditor',
|
|
location: '../src/js/',
|
|
main: 'JSONEditor'
|
|
}
|
|
],
|
|
paths: {
|
|
'theme-jsoneditor.js': '../src/js/ace/theme-jsoneditor.js'
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<!-- json editor -->
|
|
<link rel="stylesheet" type="text/css" href="../jsoneditor.css">
|
|
|
|
<!-- ace editor -->
|
|
<script type="text/javascript" src="../asset/ace/ace.js"></script>
|
|
|
|
<!-- json lint -->
|
|
<script type="text/javascript" src="../asset/jsonlint/jsonlint.js"></script>
|
|
|
|
<style type="text/css">
|
|
body {
|
|
font: 10.5pt arial;
|
|
color: #4d4d4d;
|
|
line-height: 150%;
|
|
width: 500px;
|
|
}
|
|
|
|
code {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
#jsoneditor {
|
|
width: 500px;
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
Switch editor mode using the mode box.
|
|
Note that the mode can be changed programmatically as well using the method
|
|
<code>editor.setMode(mode)</code>, try it in the console of your browser.
|
|
</p>
|
|
|
|
<div id="jsoneditor"></div>
|
|
|
|
<script type="text/javascript" >
|
|
var container, options, json, editor;
|
|
|
|
require(['JSONEditor'], function (JSONEditor) {
|
|
container = document.getElementById('jsoneditor');
|
|
|
|
options = {
|
|
mode: 'tree',
|
|
modes: ['code', 'form', 'text', 'tree', 'view'], // allowed modes
|
|
error: function (err) {
|
|
alert(err.toString());
|
|
}
|
|
};
|
|
|
|
json = {
|
|
"array": [1, 2, 3],
|
|
"boolean": true,
|
|
"null": null,
|
|
"number": 123,
|
|
"object": {"a": "b", "c": "d"},
|
|
"string": "Hello World"
|
|
};
|
|
|
|
editor = new JSONEditor(container, options, json);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|