Publish `v5.28.2`
This commit is contained in:
parent
cb2f343d1d
commit
4c6f2cdd4f
|
@ -3,7 +3,7 @@
|
||||||
https://github.com/josdejong/jsoneditor
|
https://github.com/josdejong/jsoneditor
|
||||||
|
|
||||||
|
|
||||||
## not yet published, version 5.28.2
|
## 2019-01-23, version 5.28.2
|
||||||
|
|
||||||
- Fix #639: Occurrence of non-ES5 `const` declaration in published code.
|
- Fix #639: Occurrence of non-ES5 `const` declaration in published code.
|
||||||
Regression introduced in `v5.28.0`.
|
Regression introduced in `v5.28.0`.
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
* Copyright (c) 2011-2019 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2019 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 5.28.1
|
* @version 5.28.2
|
||||||
* @date 2019-01-22
|
* @date 2019-01-23
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
if(typeof exports === 'object' && typeof module === 'object')
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
@ -7888,7 +7888,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
&& typeof this.editor.options.onClassName ==='function'
|
&& typeof this.editor.options.onClassName ==='function'
|
||||||
&& this.dom.tree){
|
&& this.dom.tree){
|
||||||
util.removeAllClassNames(this.dom.tree);
|
util.removeAllClassNames(this.dom.tree);
|
||||||
const addClasses = this.editor.options.onClassName({ path: this.getPath(), field: this.field, value: this.value }) || "";
|
var addClasses = this.editor.options.onClassName({ path: this.getPath(), field: this.field, value: this.value }) || "";
|
||||||
util.addClassName(this.dom.tree, "jsoneditor-values " + addClasses);
|
util.addClassName(this.dom.tree, "jsoneditor-values " + addClasses);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
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-2019 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2019 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 5.28.1
|
* @version 5.28.2
|
||||||
* @date 2019-01-22
|
* @date 2019-01-23
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
if(typeof exports === 'object' && typeof module === 'object')
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
@ -36530,7 +36530,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
&& typeof this.editor.options.onClassName ==='function'
|
&& typeof this.editor.options.onClassName ==='function'
|
||||||
&& this.dom.tree){
|
&& this.dom.tree){
|
||||||
util.removeAllClassNames(this.dom.tree);
|
util.removeAllClassNames(this.dom.tree);
|
||||||
const addClasses = this.editor.options.onClassName({ path: this.getPath(), field: this.field, value: this.value }) || "";
|
var addClasses = this.editor.options.onClassName({ path: this.getPath(), field: this.field, value: this.value }) || "";
|
||||||
util.addClassName(this.dom.tree, "jsoneditor-values " + addClasses);
|
util.addClassName(this.dom.tree, "jsoneditor-values " + addClasses);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
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.28.1",
|
"version": "5.28.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "5.28.1",
|
"version": "5.28.2",
|
||||||
"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