fixed issue with empty spots again and again

main
joak 4 months ago
parent f1679aa747
commit 0a8b06bd5e

@ -49,7 +49,7 @@ xhr.onload = function() {
NAVI.classList.add("quiltnavigation");
var up = grid.find((element) => element.x == found.x+1 && element.y == found.y );
if(up && (up.link != "empty" || up.name != "empty")){
if(up && up.link.includes("http")){
var UP = document.createElement('a');
UP.title = up.name;
UP.href = up.link;
@ -61,7 +61,7 @@ xhr.onload = function() {
var left = grid.find((element) => element.x == found.x && element.y == found.y-1 );
if(left && (left.link != "empty" || left.name != "empty")){
if(left && left.link.includes("http")){
var LEFT = document.createElement('a');
LEFT.title = left.name;
LEFT.href = left.link;
@ -82,7 +82,7 @@ xhr.onload = function() {
NAVI.append(CENTER);
var right = grid.find((element) => element.x == found.x && element.y == found.y+1 );
if(right && (right.link != "empty" || right.name != "empty")){
if(right && right.link.includes("http")){
var RIGHT = document.createElement('a');
RIGHT.title = right.name;
RIGHT.href = right.link;
@ -93,7 +93,7 @@ xhr.onload = function() {
}
var down = grid.find((element) => element.x == found.x-1 && element.y == found.y );
if(down && (down.link != "empty" || down.name != "empty")){
if(down && down.link.includes("http")){
var DOWN = document.createElement('a');
DOWN.title = down.name;
DOWN.href = down.link;

Loading…
Cancel
Save