Released v5.13.1
This commit is contained in:
parent
50c6a3ac9f
commit
24d9920e0d
|
@ -3,7 +3,7 @@
|
||||||
https://github.com/josdejong/jsoneditor
|
https://github.com/josdejong/jsoneditor
|
||||||
|
|
||||||
|
|
||||||
## not yet released, version 5.13.1
|
## 2018-12-18, version 5.13.1
|
||||||
|
|
||||||
- Fixed another occurrence of #494: properties not escaped in the
|
- Fixed another occurrence of #494: properties not escaped in the
|
||||||
navigation bar.
|
navigation bar.
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 5.13.0
|
* @version 5.13.1
|
||||||
* @date 2017-12-28
|
* @date 2017-12-28
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
|
@ -1392,7 +1392,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
}
|
}
|
||||||
|
|
||||||
function getName(node) {
|
function getName(node) {
|
||||||
return node.fieldInnerText || node.field || (isNaN(node.index) ? node.type : node.index);
|
return node.field !== undefined
|
||||||
|
? node._escapeHTML(node.field)
|
||||||
|
: (isNaN(node.index) ? node.type : node.index);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -24,7 +24,7 @@
|
||||||
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 5.13.0
|
* @version 5.13.1
|
||||||
* @date 2017-12-28
|
* @date 2017-12-28
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
|
@ -8938,7 +8938,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
}
|
}
|
||||||
|
|
||||||
function getName(node) {
|
function getName(node) {
|
||||||
return node.fieldInnerText || node.field || (isNaN(node.index) ? node.type : node.index);
|
return node.field !== undefined
|
||||||
|
? node._escapeHTML(node.field)
|
||||||
|
: (isNaN(node.index) ? node.type : node.index);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "5.13.0",
|
"version": "5.13.1",
|
||||||
"main": "./index",
|
"main": "./index",
|
||||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
Loading…
Reference in New Issue