1
0
mirror of synced 2025-02-04 14:19:23 +03:00

Merge pull request #3375 from vyrotek/patch-1

Fixed AjaxAdapter's super constructor call
This commit is contained in:
Kevin Brown 2015-05-19 19:52:46 -04:00
commit fdb2b6aaf2

View File

@ -10,7 +10,7 @@ define([
this.processResults = this.ajaxOptions.processResults; this.processResults = this.ajaxOptions.processResults;
} }
ArrayAdapter.__super__.constructor.call(this, $element, options); AjaxAdapter.__super__.constructor.call(this, $element, options);
} }
Utils.Extend(AjaxAdapter, ArrayAdapter); Utils.Extend(AjaxAdapter, ArrayAdapter);