Release `v5.24.5`
This commit is contained in:
parent
70140b0712
commit
f27bd97d9d
|
@ -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
|
||||
|
|
|
@ -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
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
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.24.4",
|
||||
"version": "5.24.5",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -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": [
|
||||
|
|
|
@ -765,7 +765,7 @@ textmode.validate = function () {
|
|||
console.error(err);
|
||||
});
|
||||
}
|
||||
catch(er) {
|
||||
catch(err) {
|
||||
console.error(err);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue