Skip to content

Commit

Permalink
Update built artifacts with fix from 48408f4
Browse files Browse the repository at this point in the history
  • Loading branch information
apostrophest committed Sep 22, 2016
1 parent 48408f4 commit fe459e6
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 20 deletions.
8 changes: 7 additions & 1 deletion dist/jsoneditor-minimalist.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author Jos de Jong, <[email protected]>
* @version 5.5.7
* @date 2016-08-17
* @date 2016-09-22
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -2702,6 +2702,12 @@ return /******/ (function(modules) { // webpackBootstrap
}

var value = jsonPath.substring(1, end);
if (value[0] === '\'') {
// ajv produces string prop names with single quotes, so we need
// to reformat them into valid double-quoted JSON strings
value = '\"' + value.substring(1, value.length - 1) + '\"';
}

prop = value === '*' ? value : JSON.parse(value); // parse string and number
remainder = jsonPath.substr(end + 1);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/jsoneditor-minimalist.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/jsoneditor-minimalist.min.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion dist/jsoneditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author Jos de Jong, <[email protected]>
* @version 5.5.7
* @date 2016-08-17
* @date 2016-09-22
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -10601,6 +10601,12 @@ return /******/ (function(modules) { // webpackBootstrap
}

var value = jsonPath.substring(1, end);
if (value[0] === '\'') {
// ajv produces string prop names with single quotes, so we need
// to reformat them into valid double-quoted JSON strings
value = '\"' + value.substring(1, value.length - 1) + '\"';
}

prop = value === '*' ? value : JSON.parse(value); // parse string and number
remainder = jsonPath.substr(end + 1);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/jsoneditor.map

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions dist/jsoneditor.min.js

Large diffs are not rendered by default.

0 comments on commit fe459e6

Please sign in to comment.