Released version 2.3.5
This commit is contained in:
parent
870169447f
commit
91a3f9c656
|
@ -3,7 +3,7 @@
|
|||
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 an issue with non-breaking space characters.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "2.3.5-SNAPSHOT",
|
||||
"version": "2.3.5",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
"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
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 2.3.5-SNAPSHOT
|
||||
* @date 2013-12-07
|
||||
* @version 2.3.5
|
||||
* @date 2013-12-09
|
||||
*/
|
||||
(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",
|
||||
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,
|
||||
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
|
||||
|
||||
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)
|
||||
|
||||
add documentation/information about JSON in general
|
||||
|
@ -53,9 +31,6 @@ create options:
|
|||
- collapsed: true/false
|
||||
- editableFields: true/false
|
||||
|
||||
when dragging higher than the top, or lower than the bottom, scroll the
|
||||
whole editor.
|
||||
|
||||
________________________________________________________________________
|
||||
|
||||
VERSION 3: Performance
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "2.3.5-SNAPSHOT",
|
||||
"version": "2.3.5",
|
||||
"main": "jsoneditor.js",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue