Skip to content

Commit

Permalink
Fix typo in editor. Fixes #205
Browse files Browse the repository at this point in the history
  • Loading branch information
jdorn committed Jul 29, 2014
1 parent 35ca167 commit 5eb582e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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.7.2",
"version": "0.7.3",
"authors": [
"Jeremy Dorn <[email protected]>"
],
Expand Down
4 changes: 2 additions & 2 deletions dist/jsoneditor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JSON Editor v0.7.2 - JSON Schema -> HTML Editor
/*! JSON Editor v0.7.3 - JSON Schema -> HTML Editor
* By Jeremy Dorn - https://github.com/jdorn/json-editor/
* Released under the MIT license
*
Expand Down Expand Up @@ -1306,7 +1306,7 @@ JSONEditor.AbstractEditor = Class.extend({

this.theme = this.jsoneditor.theme;
this.template_engine = this.jsoneditor.template;
this.iconlib = this.jsoneditor.inonlib;
this.iconlib = this.jsoneditor.iconlib;

this.original_schema = options.schema;
this.schema = this.jsoneditor.expandSchema(this.original_schema);
Expand Down
4 changes: 2 additions & 2 deletions dist/jsoneditor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ JSONEditor.AbstractEditor = Class.extend({

this.theme = this.jsoneditor.theme;
this.template_engine = this.jsoneditor.template;
this.iconlib = this.jsoneditor.inonlib;
this.iconlib = this.jsoneditor.iconlib;

this.original_schema = options.schema;
this.schema = this.jsoneditor.expandSchema(this.original_schema);
Expand Down
2 changes: 1 addition & 1 deletion src/intro.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! JSON Editor v0.7.2 - JSON Schema -> HTML Editor
/*! JSON Editor v0.7.3 - JSON Schema -> HTML Editor
* By Jeremy Dorn - https://github.com/jdorn/json-editor/
* Released under the MIT license
*
Expand Down

0 comments on commit 5eb582e

Please sign in to comment.