Released v5.5.9
This commit is contained in:
parent
8913ce1f6f
commit
d73665acf3
|
@ -3,7 +3,7 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## not yet released, version 5.5.9
|
||||
## 2016-10-17, version 5.5.9
|
||||
|
||||
- Fixed #329: Editor showing duplicate key warnings for keys defined on the
|
||||
Object prototype, like `toString` and `watch`.
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
* Copyright (c) 2011-2016 Jos de Jong, http://jsoneditoronline.org
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 5.5.8
|
||||
* @date 2016-09-27
|
||||
* @version 5.5.9
|
||||
* @date 2016-10-17
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
|
@ -5445,7 +5445,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
var duplicateKeys = [];
|
||||
for (var i = 0; i < this.childs.length; i++) {
|
||||
var child = this.childs[i];
|
||||
if (keys[child.field]) {
|
||||
if (keys.hasOwnProperty(child.field)) {
|
||||
duplicateKeys.push(child.field);
|
||||
}
|
||||
keys[child.field] = true;
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -24,8 +24,8 @@
|
|||
* Copyright (c) 2011-2016 Jos de Jong, http://jsoneditoronline.org
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 5.5.8
|
||||
* @date 2016-09-27
|
||||
* @version 5.5.9
|
||||
* @date 2016-10-17
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
|
@ -13344,7 +13344,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
var duplicateKeys = [];
|
||||
for (var i = 0; i < this.childs.length; i++) {
|
||||
var child = this.childs[i];
|
||||
if (keys[child.field]) {
|
||||
if (keys.hasOwnProperty(child.field)) {
|
||||
duplicateKeys.push(child.field);
|
||||
}
|
||||
keys[child.field] = true;
|
||||
|
|
File diff suppressed because one or more lines are too long
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",
|
||||
"version": "5.5.8",
|
||||
"version": "5.5.9",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue