Skip to content
This repository was archived by the owner on Apr 16, 2019. It is now read-only.

Commit 0244090

Browse files
committed
Fix Typo in $.ajax
1 parent 0b996e3 commit 0244090

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appframework.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1724,7 +1724,7 @@ if (!window.af || typeof(af) !== "function") {
17241724
$.ajax(opts);
17251725
```
17261726
1727-
* @param {Object} opts Options
1727+
* @param {object} opts Options
17281728
* @title $.ajax(options)
17291729
*/
17301730
$.ajax = function(opts) {
@@ -1850,7 +1850,7 @@ if (!window.af || typeof(af) !== "function") {
18501850
deferred.reject.call(context, xhr, "parsererror", error);
18511851
}
18521852
else {
1853-
deferred.resolve.call(context, result, "succes", xhr);
1853+
deferred.resolve.call(context, result, "success", xhr);
18541854
settings.success.call(context, result, "success", xhr);
18551855
}
18561856
} else {

0 commit comments

Comments
 (0)