Released v5.5.3
This commit is contained in:
parent
8c3c476fe7
commit
60b7b17511
|
@ -3,7 +3,7 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## not yet released, version 5.5.3
|
||||
## 2016-05-22, version 5.5.3
|
||||
|
||||
- Fixed #299: reverted the fix of #268 by trimming text in fields and values.
|
||||
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
* Copyright (c) 2011-2016 Jos de Jong, http://jsoneditoronline.org
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 5.5.2
|
||||
* @date 2016-04-18
|
||||
* @version 5.5.3
|
||||
* @date 2016-05-22
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
|
@ -7483,7 +7483,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
* @private
|
||||
*/
|
||||
Node.prototype._unescapeHTML = function (escapedText) {
|
||||
var json = '"' + this._escapeJSON(escapedText.trim()) + '"';
|
||||
var json = '"' + this._escapeJSON(escapedText) + '"';
|
||||
var htmlEscaped = util.parse(json);
|
||||
|
||||
return htmlEscaped
|
||||
|
|
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.2
|
||||
* @date 2016-04-18
|
||||
* @version 5.5.3
|
||||
* @date 2016-05-22
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
|
@ -15382,7 +15382,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
* @private
|
||||
*/
|
||||
Node.prototype._unescapeHTML = function (escapedText) {
|
||||
var json = '"' + this._escapeJSON(escapedText.trim()) + '"';
|
||||
var json = '"' + this._escapeJSON(escapedText) + '"';
|
||||
var htmlEscaped = util.parse(json);
|
||||
|
||||
return htmlEscaped
|
||||
|
|
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.2",
|
||||
"version": "5.5.3",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue