Follow along with the video below to see how to install our site as a web app on your home screen.
Notka: This feature may not be available in some browsers.
var images = trs[0].querySelectorAll('img');
images.forEach(function (image) {
if (image.getAttribute('src').includes('graphic/unit/unit')) {
var unit = image.src.split('graphic/unit/unit_')[1].replace('.png', '');
if (UNITS.includes(unit.toLowerCase())) {
obj[unit] = {
index: image.parentNode.cellIndex,
value: 0
};
}
}
})
if (typeof(trs[0]) != 'undefined') {
var images = trs[0].querySelectorAll('img');
images.forEach(function (image) {
if (image.getAttribute('src').includes('graphic/unit/unit')) {
var unit = image.src.split('graphic/unit/unit_')[1].replace('.png', '');
if (UNITS.includes(unit.toLowerCase())) {
obj[unit] = {
index: image.parentNode.cellIndex,
value: 0
};
}
}
})
}