Skip to content

Commit

Permalink
re-built jsoneditor.js after latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdelatorre committed Jan 23, 2015
1 parent 2206a50 commit 2b7d5ec
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion jsoneditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Daniel Moisset, [email protected]
* @version 3.1.2
* @date 2015-01-05
* @date 2015-01-23
*/

(function webpackUniversalModuleDefinition(root, factory) {
Expand Down Expand Up @@ -96,6 +96,8 @@ return /******/ (function(modules) { // webpackBootstrap
* 'form', 'text', and 'code'.
* {function} change Callback method, triggered
* on change of contents
* {function} click Callback method, triggered
* on click
* {Boolean} search Enable search box.
* True by default
* Only applicable for modes
Expand Down Expand Up @@ -349,6 +351,8 @@ return /******/ (function(modules) { // webpackBootstrap
* True by default
* {function} change Callback method, triggered
* on change of contents
* {function} click Callback method, triggered
* when a node is clicked
* {String} name Field name for the root node.
* @private
*/
Expand Down Expand Up @@ -893,6 +897,9 @@ return /******/ (function(modules) { // webpackBootstrap
var node = Node.getNodeFromTarget(target);
if (node) {
node.onEvent(event);
if (event.type == 'click' && this.options.click) {
this.options.click(node)
}
}
};

Expand Down
2 changes: 1 addition & 1 deletion jsoneditor.map

Large diffs are not rendered by default.

Loading

0 comments on commit 2b7d5ec

Please sign in to comment.