1a9e91f120
closes #2277 - Added ES6 linting to core/client/ - Fix typeof array comparison
36 lines
988 B
JavaScript
36 lines
988 B
JavaScript
/*global Ghost, _, Backbone, 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();
|
|
|
|
/*jshint validthis:true */
|
|
var self = this,
|
|
oldSuccess = options.success;
|
|
/*jshint validthis:false */
|
|
|
|
options.success = function () {
|
|
NProgress.done();
|
|
return oldSuccess.apply(self, arguments);
|
|
};
|
|
}
|
|
|
|
/*jshint validthis:true */
|
|
return Backbone.sync.call(this, method, model, options);
|
|
}
|
|
|
|
Ghost.ProgressModel = Backbone.Model.extend({
|
|
sync: wrapSync
|
|
});
|
|
|
|
Ghost.ProgressCollection = Backbone.Collection.extend({
|
|
sync: wrapSync
|
|
});
|
|
}());
|