Skip to content

Commit 4f04fc0

Browse files
committed
renamed _RequestError to _Error
1 parent 0ffae01 commit 4f04fc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/autocomplete.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface Params {
4848
_RenderResponseItems: any;
4949
_Select: any;
5050
_Url: any;
51-
_RequestError: any;
51+
_Error: any;
5252

5353
// Internal item
5454
$AjaxTimer: number;
@@ -224,7 +224,7 @@ class AutoComplete {
224224
this._Render(this._Post(response));
225225
this._Open();
226226
}.bind(this),
227-
this._RequestError
227+
this._Error
228228
);
229229
}
230230
},
@@ -499,7 +499,7 @@ class AutoComplete {
499499
/**
500500
* Handle HTTP error on the request
501501
*/
502-
_RequestError: function(): void {
502+
_Error: function(): void {
503503
},
504504

505505
$AjaxTimer: null,

0 commit comments

Comments
 (0)