summaryrefslogtreecommitdiffstats
path: root/js/service/Loading.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/service/Loading.js')
-rw-r--r--js/service/Loading.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/service/Loading.js b/js/service/Loading.js
index c07dba9fe..eb42655a5 100644
--- a/js/service/Loading.js
+++ b/js/service/Loading.js
@@ -16,11 +16,11 @@ app.service('Loading', function () {
autopaging: false
};
- this.setLoading = (area, isLoading) => {
+ this.setLoading = function (area, isLoading) {
this.loading[area] = isLoading;
};
- this.isLoading = (area) => {
+ this.isLoading = function (area) {
return this.loading[area];
};