Add back theme

This commit is contained in:
Samy Pessé
2015-01-20 11:29:26 +01:00
parent bac25cdf29
commit 238cd9f7f0
87 changed files with 5115 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
define([
"jQuery"
], function($) {
var showLoading = function(p) {
$(".book").addClass("is-loading");
p.always(function() {
$(".book").removeClass("is-loading");
});
return p;
};
return {
show: showLoading
};
});