Improved www.ttss.krakow.pl
Jacek Kowalski
2019-07-06 3c77d4ee1818fd44567f7f22cee81b9755b0ad7b
Remove JS arrow function to increase compatibility
1 files modified
4 ■■■ changed files
common.js 4 ●●● patch | view | raw | blame | history
common.js
@@ -45,7 +45,9 @@
Deferred.all = function(iterable) {
    return new Deferred(
        Promise.all(
            iterable.map(x => x.promise)
            iterable.map(function(x) {
                return x.promise;
            })
        )
    );
};