Fix #684: `const` used in bundled library

This commit is contained in:
jos 2019-04-04 19:49:39 +02:00
parent 965584efe6
commit c685813538
2 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,11 @@
https://github.com/josdejong/jsoneditor
## not yet released, version 5.32.3
- Fix #684: `const` used in bundled library.
## 2018-04-03, version 5.32.2
- Fixed #416: Clipped action menu for append nodes.

View File

@ -1967,7 +1967,7 @@ Node.prototype._updateDomDefault = function () {
}
// select either enum dropdown (select) or input value
const inputElement = this.dom.select
var inputElement = this.dom.select
? this.dom.select
: this.dom.value;