mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-28 22:16:00 -04:00
Switch to deffered objects interface.
This commit is contained in:
parent
71d2ff10dc
commit
5fab8e1465
4 changed files with 26 additions and 25 deletions
|
@ -38,8 +38,10 @@ modulejs.define('core/resource', ['_', '$', 'config', 'core/settings'], function
|
|||
|
||||
$.ajax({
|
||||
url: scriptsHref + filename,
|
||||
dataType: 'script',
|
||||
complete: function () { callback(); }
|
||||
dataType: 'script'
|
||||
}).done(function () {
|
||||
|
||||
callback();
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -15,15 +15,15 @@ modulejs.define('core/server', ['$', '_', 'config', 'core/location'], function (
|
|||
url: location.getAbsHref(),
|
||||
data: data,
|
||||
type: 'POST',
|
||||
dataType: 'json',
|
||||
success: function (json) {
|
||||
dataType: 'json'
|
||||
})
|
||||
.done(function (json) {
|
||||
|
||||
callback(json);
|
||||
},
|
||||
error: function () {
|
||||
})
|
||||
.fail(function () {
|
||||
|
||||
callback();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
callback();
|
||||
|
|
|
@ -50,16 +50,16 @@ modulejs.define('ext/preview-txt', ['_', '$', 'markdown', 'core/settings', 'core
|
|||
|
||||
$.ajax({
|
||||
url: absHref,
|
||||
dataType: 'text',
|
||||
success: function (content) {
|
||||
dataType: 'text'
|
||||
})
|
||||
.done(function (content) {
|
||||
|
||||
callback(content);
|
||||
// setTimeout(function () { callback(content); }, 1000); // for testing
|
||||
},
|
||||
error: function (jqXHR, textStatus, errorThrown) {
|
||||
})
|
||||
.fail(function (jqXHR, textStatus, errorThrown) {
|
||||
|
||||
callback('[ajax error] ' + textStatus);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -51,12 +51,11 @@ if (window.attachEvent && !window.addEventListener) { throw 'no-browser'; }
|
|||
url: url,
|
||||
data: {action: 'get', setup: true, options: true, types: true, theme: true, langs: true},
|
||||
type: 'POST',
|
||||
dataType: 'json',
|
||||
success: function (config) {
|
||||
dataType: 'json'
|
||||
}).done(function (config) {
|
||||
|
||||
modulejs.define('config', config);
|
||||
$(function () { modulejs.require(module); });
|
||||
}
|
||||
});
|
||||
|
||||
}());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue