mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-30 08:20:59 +02:00
Clean code.
This commit is contained in:
@@ -7,19 +7,19 @@ modulejs.define('core/server', ['$', '_', 'config', 'core/location'], function (
|
|||||||
|
|
||||||
if (hasApi) {
|
if (hasApi) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: location.getAbsHref(),
|
url: location.getAbsHref(),
|
||||||
data: data,
|
data: data,
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
dataType: 'json'
|
dataType: 'json'
|
||||||
})
|
})
|
||||||
.done(function (json) {
|
.done(function (json) {
|
||||||
|
|
||||||
callback(json);
|
callback(json);
|
||||||
})
|
})
|
||||||
.fail(function () {
|
.fail(function () {
|
||||||
|
|
||||||
callback();
|
callback();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
callback();
|
callback();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user