You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
function I(a) {
|
|
return document.getElementById(a);
|
|
}
|
|
|
|
function C(a) {
|
|
return document.getElementsByClassName(a);
|
|
}
|
|
|
|
function T(a) {
|
|
return document.getElementsByTagName(a);
|
|
}
|
|
|
|
function G(i, s, o, r) {
|
|
if (i % 8 === 0) {
|
|
var li = document.createElement('li');
|
|
ol = document.createElement('ol');
|
|
I('y-co').appendChild(li);
|
|
li.appendChild(ol);
|
|
}
|
|
var li = document.createElement('li');
|
|
li.setAttribute('id', s);
|
|
if (null === o || undefined === o || '' === o) {
|
|
li.setAttribute('class', 'coord empty');
|
|
ol.appendChild(li);
|
|
} else {
|
|
li.setAttribute('class', 'coord piece');
|
|
ol.appendChild(li);
|
|
if (r === undefined) {
|
|
var img = document.createElement('img');
|
|
var prop = o.substring(1, 2);
|
|
img.setAttribute('id', o);
|
|
img.setAttribute('src', 'i/' + o.substring(0, 2) + '.png');
|
|
img.setAttribute('alt', pp[o.substring(0, 1)] + ' ' + pn[prop] + ' on ' + s);
|
|
li.appendChild(img);
|
|
} else {
|
|
var pce = I(o);
|
|
console.log(i, s, o, pce, r);
|
|
if (pce === null) {
|
|
var img = document.createElement('img');
|
|
var prop = o.substring(1, 2);
|
|
img.setAttribute('id', o);
|
|
img.setAttribute('src', 'i/' + o.substring(0, 2) + '.png');
|
|
img.setAttribute('alt', pp[o.substring(0, 1)] + ' ' + pn[prop] + ' on ' + s);
|
|
li.appendChild(img);
|
|
} else {
|
|
var salt = pce.getAttribute('alt');
|
|
salt = salt.substring(0, salt.length-2) + s;
|
|
pce.setAttribute('alt', salt);
|
|
var srci = pce.parentNode.innerHTML; // Duplicate.
|
|
pce.parentNode.innerHTML = ''; // Remove.
|
|
li.innerHTML = srci; // Add.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|