mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
ba386f1e37
fixes #2011 - rather than trigger NProgress for fetch calls I’ve moved it to be used for all sync calls - issue #2011 was a result of NProgress only being called during a fetch() call, which when saving is not used - save() is. Sync is used by all ajax calls.
32 lines
921 B
JavaScript
32 lines
921 B
JavaScript
/*global window, document, setTimeout, Ghost, $, _, Backbone, JST, shortcut, NProgress */
|
|
|
|
(function () {
|
|
"use strict";
|
|
NProgress.configure({ showSpinner: false });
|
|
|
|
// Adds in a call to start a loading bar
|
|
// This is sets up a success function which completes the loading bar
|
|
function wrapSync(method, model, options) {
|
|
if (options !== undefined && _.isObject(options)) {
|
|
NProgress.start();
|
|
|
|
var self = this,
|
|
oldSuccess = options.success;
|
|
|
|
options.success = function () {
|
|
NProgress.done();
|
|
return oldSuccess.apply(self, arguments);
|
|
};
|
|
}
|
|
|
|
return Backbone.sync.call(this, method, model, options);
|
|
}
|
|
|
|
Ghost.ProgressModel = Backbone.Model.extend({
|
|
sync: wrapSync
|
|
});
|
|
|
|
Ghost.ProgressCollection = Backbone.Collection.extend({
|
|
sync: wrapSync
|
|
});
|
|
}()); |