mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
0f17378b26
Refs #4001 - grunt-jscs@0.8.1 which provides ES6 support.
22 lines
495 B
JavaScript
22 lines
495 B
JavaScript
var NProgressSaveMixin = Ember.Mixin.create({
|
|
save: function (options) {
|
|
if (options && options.disableNProgress) {
|
|
return this._super(options);
|
|
}
|
|
|
|
NProgress.start();
|
|
|
|
return this._super(options).then(function (value) {
|
|
NProgress.done();
|
|
|
|
return value;
|
|
}).catch(function (error) {
|
|
NProgress.done();
|
|
|
|
return Ember.RSVP.reject(error);
|
|
});
|
|
}
|
|
});
|
|
|
|
export default NProgressSaveMixin;
|