add missing ;

This commit is contained in:
Aurélien Delobelle 2017-03-26 14:52:23 +02:00
parent b81b33c056
commit 24f72ae7d4

View file

@ -243,7 +243,7 @@ class APIModelObject extends ModelObject {
$.getJSON(this.url_object, api_options)
.done(function (json, textStatus, jqXHR) {
that.from(json)
that.from(json);
on_success(json, textStatus, jqXHR);
})
.fail(on_error);