Released version 2.3.5
This commit is contained in:
parent
870169447f
commit
91a3f9c656
|
@ -3,7 +3,7 @@
|
||||||
http://jsoneditoronline.org
|
http://jsoneditoronline.org
|
||||||
|
|
||||||
|
|
||||||
## (not yet released), version 2.3.5
|
## 2013-12-09, version 2.3.5
|
||||||
|
|
||||||
- Fixed a positioning issue of the action menu again.
|
- Fixed a positioning issue of the action menu again.
|
||||||
- Fixed an issue with non-breaking space characters.
|
- Fixed an issue with non-breaking space characters.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "2.3.5-SNAPSHOT",
|
"version": "2.3.5",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
"json",
|
"json",
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -27,8 +27,8 @@
|
||||||
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 2.3.5-SNAPSHOT
|
* @version 2.3.5
|
||||||
* @date 2013-12-07
|
* @date 2013-12-09
|
||||||
*/
|
*/
|
||||||
(function () {
|
(function () {
|
||||||
|
|
||||||
|
|
|
@ -12,35 +12,13 @@ Bug: get the breaking of long words working on Firefox an IE. Does not work for
|
||||||
a word like "blablablablablablablablablablablablablablablablablablablabla",
|
a word like "blablablablablablablablablablablablablablablablablablablabla",
|
||||||
and in IE also not for urls.
|
and in IE also not for urls.
|
||||||
|
|
||||||
Bug: zooming on IE8 does not work nicely: width of the contents is not adjusted.
|
|
||||||
is fixed as soon as resize() is executed after zooming
|
|
||||||
|
|
||||||
Get things working in IE7? maybe only a sizing problem (besides no JSON support)
|
|
||||||
|
|
||||||
for highlighting and expanding: send a timestamp, and when very large,
|
for highlighting and expanding: send a timestamp, and when very large,
|
||||||
split via a timeout in different parts so, the browser stays responsive.
|
split via a timeout in different parts so, the browser stays responsive.
|
||||||
|
|
||||||
The edit buttons on the right should stay visible on the right side always,
|
|
||||||
possibly overlapping the text (but with a horizontal scrollbar)
|
|
||||||
|
|
||||||
________________________________________________________________________
|
________________________________________________________________________
|
||||||
|
|
||||||
VERSION 2: Functionality
|
VERSION 2: Functionality
|
||||||
|
|
||||||
filter nodes
|
|
||||||
|
|
||||||
create onchange callbacks
|
|
||||||
|
|
||||||
make the editor more keyboard friendly. Shortcut keys, access to the type dropdown menu
|
|
||||||
|
|
||||||
alt+arrow keys to navigate through the fields and values
|
|
||||||
|
|
||||||
copy a structure via Ctrl+ drag and drop?
|
|
||||||
|
|
||||||
undo/redo
|
|
||||||
|
|
||||||
load files from url or by upload
|
|
||||||
|
|
||||||
store the contents in the browser. also store all revisions (used with undo/redo)
|
store the contents in the browser. also store all revisions (used with undo/redo)
|
||||||
|
|
||||||
add documentation/information about JSON in general
|
add documentation/information about JSON in general
|
||||||
|
@ -53,9 +31,6 @@ create options:
|
||||||
- collapsed: true/false
|
- collapsed: true/false
|
||||||
- editableFields: true/false
|
- editableFields: true/false
|
||||||
|
|
||||||
when dragging higher than the top, or lower than the bottom, scroll the
|
|
||||||
whole editor.
|
|
||||||
|
|
||||||
________________________________________________________________________
|
________________________________________________________________________
|
||||||
|
|
||||||
VERSION 3: Performance
|
VERSION 3: Performance
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "2.3.5-SNAPSHOT",
|
"version": "2.3.5",
|
||||||
"main": "jsoneditor.js",
|
"main": "jsoneditor.js",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
Loading…
Reference in New Issue