Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdorn committed Jun 12, 2014
1 parent 26e01c7 commit c9eebb9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-editor",
"version": "0.6.13",
"version": "0.6.14",
"authors": [
"Jeremy Dorn <[email protected]>"
],
Expand Down
8 changes: 4 additions & 4 deletions dist/jsoneditor.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*! JSON Editor v0.6.13 - JSON Schema -> HTML Editor
/*! JSON Editor v0.6.14 - JSON Schema -> HTML Editor
* By Jeremy Dorn - https://github.com/jdorn/json-editor/
* Released under the MIT license
*
* Date: 2014-06-08
* Date: 2014-06-11
*/

/**
Expand Down Expand Up @@ -478,14 +478,14 @@ JSONEditor.Validator = Class.extend({
this.options = options || {};
this.refs = this.options.refs || {};

// Store any $ref and definitions
this.ready_callbacks = [];

if(this.options.ready) this.ready(this.options.ready);
// Store any $ref and definitions
this.getRefs();
},
ready: function(callback) {
if(this.is_ready) callback.apply(self,[this.expanded]);
if(this.is_ready) callback.apply(this,[this.expanded]);
else {
this.ready_callbacks.push(callback);
}
Expand Down
6 changes: 3 additions & 3 deletions dist/jsoneditor.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/intro.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*! JSON Editor v0.6.13 - JSON Schema -> HTML Editor
/*! JSON Editor v0.6.14 - JSON Schema -> HTML Editor
* By Jeremy Dorn - https://github.com/jdorn/json-editor/
* Released under the MIT license
*
* Date: 2014-06-08
* Date: 2014-06-11
*/

/**
Expand Down

0 comments on commit c9eebb9

Please sign in to comment.