Release `v5.24.5`

This commit is contained in:
jos 2018-09-06 20:44:14 +02:00
parent 70140b0712
commit f27bd97d9d
10 changed files with 19 additions and 13 deletions

View File

@ -3,6 +3,12 @@
https://github.com/josdejong/jsoneditor
## 2018-09-06, version 5.24.5
- Fixed a bug in textmode on IE 11, not loading the editor when
`Promise` is undefined.
## 2018-09-06, version 5.24.4
- Fixed #576: Visualization in mode `view` when an array

View File

@ -24,7 +24,7 @@
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
*
* @author Jos de Jong, <wjosdejong@gmail.com>
* @version 5.24.4
* @version 5.24.5
* @date 2018-09-06
*/
(function webpackUniversalModuleDefinition(root, factory) {
@ -17934,7 +17934,7 @@ return /******/ (function(modules) { // webpackBootstrap
console.error(err);
});
}
catch(er) {
catch(err) {
console.error(err);
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/jsoneditor.js vendored
View File

@ -24,7 +24,7 @@
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
*
* @author Jos de Jong, <wjosdejong@gmail.com>
* @version 5.24.4
* @version 5.24.5
* @date 2018-09-06
*/
(function webpackUniversalModuleDefinition(root, factory) {
@ -46576,7 +46576,7 @@ return /******/ (function(modules) { // webpackBootstrap
console.error(err);
});
}
catch(er) {
catch(err) {
console.error(err);
}
}

2
dist/jsoneditor.map vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "jsoneditor",
"version": "5.24.4",
"version": "5.24.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "jsoneditor",
"version": "5.24.4",
"version": "5.24.5",
"main": "./index",
"description": "A web-based tool to view, edit, format, and validate JSON",
"tags": [

View File

@ -765,7 +765,7 @@ textmode.validate = function () {
console.error(err);
});
}
catch(er) {
catch(err) {
console.error(err);
}
}