1
0
mirror of synced 2025-02-09 16:49:24 +03:00

Fixed AjaxAdapter's super constructor call

Replaced ArrayAdapter super constructor call with correct AjaxAdapter super constructor call. This will allow users to initialize an Ajax select with data.
This commit is contained in:
Jason 2015-05-19 16:10:16 -07:00
parent dd9af68934
commit da5a72c3ac

View File

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