Skip to content

Commit dd9bed2

Browse files
author
Zakaria RACHEDI
committed
Fix UI issues
1 parent f039c48 commit dd9bed2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/item-crawler/getEquipments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var getEquipments = exports.getEquipments = function (url) {
5353
}
5454
})
5555
.then((htmlRes) => {
56-
console.log(htmlRes);
56+
// console.log(htmlRes);
5757
resolve(htmlRes);
5858
});
5959
});

lib/item-crawler/getMounts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var getMounts = exports.getMounts = function (url) {
4040
}
4141
})
4242
.then((htmlRes) => {
43-
console.log(htmlRes);
43+
// console.log(htmlRes);
4444
resolve(htmlRes);
4545
});
4646
});

lib/item-crawler/getPets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var getPets = exports.getPets = function (url) {
5757
}
5858
})
5959
.then((htmlRes) => {
60-
console.log(htmlRes);
60+
// console.log(htmlRes);
6161
resolve(htmlRes);
6262
});
6363
});

lib/item-crawler/getSets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var getSets = exports.getSets = function (url) {
5656
}
5757
})
5858
.then((htmlRes) => {
59-
console.log(htmlRes);
59+
// console.log(htmlRes);
6060
resolve(htmlRes);
6161
});
6262
});

lib/item-crawler/getWeapons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var getWeapons = exports.getWeapons = function (url) {
6262
}
6363
})
6464
.then((htmlRes) => {
65-
console.log(htmlRes);
65+
// console.log(htmlRes);
6666
resolve(htmlRes);
6767
});
6868
});

0 commit comments

Comments
 (0)