summaryrefslogtreecommitdiff
path: root/www/js/ng.js
blob: d99945b16e434ce46d1f4b0d9d765eb6dff2b983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*angular.module("ng")
.factory('imageLoadingDataShare', function () {
    var imageLoading = 1; // 1 = loading, -1 = error;
    return {
        'set': function (val) {
            imageLoading = val;
        },
        'get': function() {
            return imageLoading;
        }
    };


});*/