forked from DGNum/gestioCOF
add missing ;
This commit is contained in:
parent
b81b33c056
commit
24f72ae7d4
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ class APIModelObject extends ModelObject {
|
||||||
|
|
||||||
$.getJSON(this.url_object, api_options)
|
$.getJSON(this.url_object, api_options)
|
||||||
.done(function (json, textStatus, jqXHR) {
|
.done(function (json, textStatus, jqXHR) {
|
||||||
that.from(json)
|
that.from(json);
|
||||||
on_success(json, textStatus, jqXHR);
|
on_success(json, textStatus, jqXHR);
|
||||||
})
|
})
|
||||||
.fail(on_error);
|
.fail(on_error);
|
||||||
|
|
Loading…
Reference in a new issue