Released v5.5.11
This commit is contained in:
parent
2f4f221c9a
commit
3117789ed7
|
@ -3,7 +3,7 @@
|
||||||
https://github.com/josdejong/jsoneditor
|
https://github.com/josdejong/jsoneditor
|
||||||
|
|
||||||
|
|
||||||
## (not yet released), version 5.5.11
|
## 2017-01-06, version 5.5.11
|
||||||
|
|
||||||
- Fixed embedded version of jsoneditor ace theme not being loaded in
|
- Fixed embedded version of jsoneditor ace theme not being loaded in
|
||||||
minimalist version (see #55).
|
minimalist version (see #55).
|
||||||
|
|
2
NOTICE
2
NOTICE
|
@ -1,7 +1,7 @@
|
||||||
JSON Editor
|
JSON Editor
|
||||||
https://github.com/josdejong/jsoneditor
|
https://github.com/josdejong/jsoneditor
|
||||||
|
|
||||||
Copyright (C) 2011-2015 Jos de Jong
|
Copyright (C) 2011-2017 Jos de Jong
|
||||||
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
|
|
@ -21,11 +21,11 @@
|
||||||
* License for the specific language governing permissions and limitations under
|
* License for the specific language governing permissions and limitations under
|
||||||
* the License.
|
* the License.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 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.5.10
|
* @version 5.5.11
|
||||||
* @date 2016-11-02
|
* @date 2017-01-06
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
if(typeof exports === 'object' && typeof module === 'object')
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
@ -7999,6 +7999,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
|
|
||||||
var MAX_ERRORS = 3; // maximum number of displayed errors at the bottom
|
var MAX_ERRORS = 3; // maximum number of displayed errors at the bottom
|
||||||
|
|
||||||
|
var DEFAULT_THEME = 'ace/theme/jsoneditor';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a text editor
|
* Create a text editor
|
||||||
* @param {Element} container
|
* @param {Element} container
|
||||||
|
@ -8046,7 +8048,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
}
|
}
|
||||||
|
|
||||||
// determine theme
|
// determine theme
|
||||||
this.theme = options.theme || 'ace/theme/jsoneditor';
|
this.theme = options.theme || DEFAULT_THEME;
|
||||||
|
if (this.theme === DEFAULT_THEME && window.ace) {
|
||||||
|
__webpack_require__(17);
|
||||||
|
}
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
this.container = container;
|
this.container = container;
|
||||||
|
@ -8484,7 +8489,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
// load required ace modules
|
// load required ace modules
|
||||||
__webpack_require__(14);
|
__webpack_require__(14);
|
||||||
__webpack_require__(16);
|
__webpack_require__(16);
|
||||||
__webpack_require__(17);
|
|
||||||
|
|
||||||
module.exports = ace;
|
module.exports = ace;
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,11 +1,11 @@
|
||||||
/* reset styling (prevent conflicts with bootstrap, materialize.css, etc.) */
|
/* reset styling (prevent conflicts with bootstrap, materialize.css, etc.) */
|
||||||
|
|
||||||
div.jsoneditor input {
|
div.jsoneditor .jsoneditor-search input {
|
||||||
height: auto;
|
height: auto;
|
||||||
border: inherit;
|
border: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.jsoneditor input:focus {
|
div.jsoneditor .jsoneditor-search input:focus {
|
||||||
border: none !important;
|
border: none !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
@ -219,6 +219,7 @@ div.jsoneditor-tree table.jsoneditor-tree {
|
||||||
}
|
}
|
||||||
|
|
||||||
div.jsoneditor-outer {
|
div.jsoneditor-outer {
|
||||||
|
position: static;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin: -35px 0 0 0;
|
margin: -35px 0 0 0;
|
||||||
|
|
|
@ -21,11 +21,11 @@
|
||||||
* License for the specific language governing permissions and limitations under
|
* License for the specific language governing permissions and limitations under
|
||||||
* the License.
|
* the License.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 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.5.10
|
* @version 5.5.11
|
||||||
* @date 2016-11-02
|
* @date 2017-01-06
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
if(typeof exports === 'object' && typeof module === 'object')
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
@ -15898,6 +15898,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
|
|
||||||
var MAX_ERRORS = 3; // maximum number of displayed errors at the bottom
|
var MAX_ERRORS = 3; // maximum number of displayed errors at the bottom
|
||||||
|
|
||||||
|
var DEFAULT_THEME = 'ace/theme/jsoneditor';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a text editor
|
* Create a text editor
|
||||||
* @param {Element} container
|
* @param {Element} container
|
||||||
|
@ -15945,7 +15947,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
}
|
}
|
||||||
|
|
||||||
// determine theme
|
// determine theme
|
||||||
this.theme = options.theme || 'ace/theme/jsoneditor';
|
this.theme = options.theme || DEFAULT_THEME;
|
||||||
|
if (this.theme === DEFAULT_THEME && window.ace) {
|
||||||
|
__webpack_require__(70);
|
||||||
|
}
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
this.container = container;
|
this.container = container;
|
||||||
|
@ -16383,7 +16388,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
// load required ace modules
|
// load required ace modules
|
||||||
__webpack_require__(67);
|
__webpack_require__(67);
|
||||||
__webpack_require__(69);
|
__webpack_require__(69);
|
||||||
__webpack_require__(70);
|
|
||||||
|
|
||||||
module.exports = ace;
|
module.exports = ace;
|
||||||
|
|
||||||
|
|
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",
|
"name": "jsoneditor",
|
||||||
"version": "5.5.10",
|
"version": "5.5.11",
|
||||||
"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": [
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* License for the specific language governing permissions and limitations under
|
* License for the specific language governing permissions and limitations under
|
||||||
* the License.
|
* the License.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 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 @@version
|
* @version @@version
|
||||||
|
|
Loading…
Reference in New Issue