Skip to content

Commit c9eebb9

Browse files
committed
Version bump.
1 parent 26e01c7 commit c9eebb9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-editor",
3-
"version": "0.6.13",
3+
"version": "0.6.14",
44
"authors": [
55
"Jeremy Dorn <[email protected]>"
66
],

dist/jsoneditor.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*! JSON Editor v0.6.13 - JSON Schema -> HTML Editor
1+
/*! JSON Editor v0.6.14 - JSON Schema -> HTML Editor
22
* By Jeremy Dorn - https://github.com/jdorn/json-editor/
33
* Released under the MIT license
44
*
5-
* Date: 2014-06-08
5+
* Date: 2014-06-11
66
*/
77

88
/**
@@ -478,14 +478,14 @@ JSONEditor.Validator = Class.extend({
478478
this.options = options || {};
479479
this.refs = this.options.refs || {};
480480

481-
// Store any $ref and definitions
482481
this.ready_callbacks = [];
483482

484483
if(this.options.ready) this.ready(this.options.ready);
484+
// Store any $ref and definitions
485485
this.getRefs();
486486
},
487487
ready: function(callback) {
488-
if(this.is_ready) callback.apply(self,[this.expanded]);
488+
if(this.is_ready) callback.apply(this,[this.expanded]);
489489
else {
490490
this.ready_callbacks.push(callback);
491491
}

dist/jsoneditor.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/intro.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*! JSON Editor v0.6.13 - JSON Schema -> HTML Editor
1+
/*! JSON Editor v0.6.14 - JSON Schema -> HTML Editor
22
* By Jeremy Dorn - https://github.com/jdorn/json-editor/
33
* Released under the MIT license
44
*
5-
* Date: 2014-06-08
5+
* Date: 2014-06-11
66
*/
77

88
/**

0 commit comments

Comments
 (0)