Skip to content

Commit

Permalink
Released v5.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jan 18, 2018
1 parent f03b64f commit c5f3723
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 29 deletions.
4 changes: 2 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
https://github.com/josdejong/jsoneditor


## not yet released, version 5.13.2
## 2018-01-18, version 5.13.2

- Fixed view mode opening links in a new tab instead of current tab
when Ctrl key is not down. Thanks @LEW21.
- Fixed #502: code editor not showing a monospaced font some cases.


## 2018-12-28, version 5.13.1
## 2017-12-28, version 5.13.1

- Fixed another occurrence of #494: properties not escaped in the
navigation bar.
Expand Down
7 changes: 3 additions & 4 deletions dist/jsoneditor-minimalist.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
*
* @author Jos de Jong, <[email protected]>
* @version 5.13.1
* @date 2017-12-28
* @version 5.13.2
* @date 2018-01-18
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -6631,7 +6631,6 @@ return /******/ (function(modules) { // webpackBootstrap
// create a link in case of read-only editor and value containing an url
domValue = document.createElement('a');
domValue.href = this.value;
domValue.target = '_blank';
domValue.innerHTML = this._escapeHTML(this.value);
}
else {
Expand Down Expand Up @@ -10471,7 +10470,7 @@ return /******/ (function(modules) { // webpackBootstrap
}\
\
.ace-jsoneditor.ace_editor {\
font-family: droid sans mono, consolas, monospace, courier new, courier, sans-serif;\
font-family: \"dejavu sans mono\", \"droid sans mono\", consolas, monaco, \"lucida console\", \"courier new\", courier, monospace, sans-serif;\
line-height: 1.3;\
background-color: #fff;\
}\
Expand Down
2 changes: 1 addition & 1 deletion dist/jsoneditor-minimalist.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/jsoneditor-minimalist.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jsoneditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ div.jsoneditor td,
div.jsoneditor th,
div.jsoneditor textarea,
.jsoneditor-schema-error {
font-family: droid sans mono, consolas, monospace, courier new, courier, sans-serif;
font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif;
font-size: 10pt;
color: #1A1A1A;
}
Expand Down Expand Up @@ -974,7 +974,7 @@ div.jsoneditor div.autocomplete.dropdown {
padding-right: 5pt;
text-align: left;
outline: 0;
font-family: droid sans mono, consolas, monospace, courier new, courier, sans-serif;
font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif;
font-size: 10pt;
}

Expand Down
7 changes: 3 additions & 4 deletions dist/jsoneditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
*
* @author Jos de Jong, <[email protected]>
* @version 5.13.1
* @date 2017-12-28
* @version 5.13.2
* @date 2018-01-18
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -14177,7 +14177,6 @@ return /******/ (function(modules) { // webpackBootstrap
// create a link in case of read-only editor and value containing an url
domValue = document.createElement('a');
domValue.href = this.value;
domValue.target = '_blank';
domValue.innerHTML = this._escapeHTML(this.value);
}
else {
Expand Down Expand Up @@ -38301,7 +38300,7 @@ return /******/ (function(modules) { // webpackBootstrap
}\
\
.ace-jsoneditor.ace_editor {\
font-family: droid sans mono, consolas, monospace, courier new, courier, sans-serif;\
font-family: \"dejavu sans mono\", \"droid sans mono\", consolas, monaco, \"lucida console\", \"courier new\", courier, monospace, sans-serif;\
line-height: 1.3;\
background-color: #fff;\
}\
Expand Down
2 changes: 1 addition & 1 deletion dist/jsoneditor.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jsoneditor.min.css

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions dist/jsoneditor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsoneditor",
"version": "5.13.1",
"version": "5.13.2",
"main": "./index",
"description": "A web-based tool to view, edit, format, and validate JSON",
"tags": [
Expand Down

0 comments on commit c5f3723

Please sign in to comment.