Skip to content

Commit ddf6458

Browse files
committed
docs 업데이트 적용
1 parent 1fe4aa4 commit ddf6458

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/assets/index-CbbK33mH.js docs/assets/index-BDoPEOr-.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<meta property="og:image" content="./images/json-editor-banner.webp">
1818
<link rel="shortcut icon" href="./favicon.ico">
1919
<link rel="icon" type="image/x-icon" href="./images/json-editor-icon.png">
20-
<script type="module" crossorigin src="./assets/index-CbbK33mH.js"></script>
20+
<script type="module" crossorigin src="./assets/index-BDoPEOr-.js"></script>
2121
<link rel="stylesheet" crossorigin href="./assets/index-DbaNkN54.css">
2222
</head>
2323
<body ontouchstart="">

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@redgoose/json-editor",
33
"description": "Easy editing JSON data",
44
"author": "redgoose <[email protected]>",
5-
"version": "1.2.1",
5+
"version": "1.2.2",
66
"keywords": [ "json", "editor", "library", "tool" ],
77
"license": "MIT",
88
"main": "./lib/json-editor.js",

src/docs/components/editor/index.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ function setupJsonEditor()
6060
editor = new JsonEditor(_editor, {
6161
live: true,
6262
theme: $theme,
63+
node: $source,
64+
openDepth: 3,
6365
})
64-
editor.replace($source, {}, false)
6566
_editor.addEventListener('update', updateSource)
6667
_editor.addEventListener('context', customContext)
6768
dispatch('init', { instance: editor })
@@ -80,7 +81,6 @@ function restartJsonEditor()
8081
{
8182
if (!_editor) return
8283
destroyJsonEditor()
83-
// TODO: 언어변경
8484
setupJsonEditor()
8585
}
8686

0 commit comments

Comments
 (0)