diff --git a/changelog.txt b/changelog.txt index f493d38..defa22d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,14 @@ JSON EDITOR ONLINE CHANGELOG http://jsoneditoronline.org + +, version 1.1.2 + +- fixed leading an trailing spaces not being displayed in the editor. +- link to the sourcecode on github added at the bottom of the page. +- fixed wrapping of long words and urls in Chrome. + + 2012-07-01, version 1.1.1 - fixed global event listener for the focus/blur events, causing changes in diff --git a/jsoneditor.css b/jsoneditor.css index e2fee17..6e23829 100644 --- a/jsoneditor.css +++ b/jsoneditor.css @@ -9,6 +9,10 @@ word-wrap: break-word; } +.jsoneditor-value { + word-break: break-word; +} + .jsoneditor-empty { background-color: #E5E5E5; }