jsoneditor/examples/requirejs_demo/requirejs_demo.html

21 lines
398 B
HTML
Raw Normal View History

2013-01-06 05:19:38 +08:00
<!DOCTYPE HTML>
<html>
<head>
<title>JSONEditor | Require.js demo</title>
<style type="text/css">
#jsoneditor {
width: 500px;
height: 500px;
}
</style>
<script data-main="scripts/main" src="scripts/require.js"></script>
2013-01-06 05:19:38 +08:00
</head>
<body>
<p>
<button id="setJSON">Set JSON</button>
<button id="getJSON">Get JSON</button>
</p>
<div id="jsoneditor"></div>
2013-01-06 05:19:38 +08:00
</body>
</html>