Clean some code that make crawlers unhappy
This commit is contained in:
parent
5fed2e678c
commit
b9a802163b
2 changed files with 8 additions and 8 deletions
|
@ -12405,10 +12405,10 @@ var list = "<table>";
|
|||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if(janin.currencies[i].donate == null)
|
||||
continue;
|
||||
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>"
|
||||
+"<td class='currencyNameColumn'>"+janin.currencies[i].name+"</td>"
|
||||
+"<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>"
|
||||
+janin.currencies[i].donate+"</a></td></tr>";
|
||||
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>";
|
||||
list += "<td class='currencyNameColumn'>"+janin.currencies[i].name+"</td>";
|
||||
list += "<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>";
|
||||
list += janin.currencies[i].donate+"</a></td></tr>";
|
||||
}
|
||||
list += "</table>";
|
||||
donatelist.innerHTML = list;
|
||||
|
|
|
@ -51,10 +51,10 @@ var list = "<table>";
|
|||
for(i = 0; i < janin.currencies.length; i++) {
|
||||
if(janin.currencies[i].donate == null)
|
||||
continue;
|
||||
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>"
|
||||
+"<td class='currencyNameColumn'>"+janin.currencies[i].name+"</td>"
|
||||
+"<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>"
|
||||
+janin.currencies[i].donate+"</a></td></tr>";
|
||||
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>";
|
||||
list += "<td class='currencyNameColumn'>"+janin.currencies[i].name+"</td>";
|
||||
list += "<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>";
|
||||
list += janin.currencies[i].donate+"</a></td></tr>";
|
||||
}
|
||||
list += "</table>";
|
||||
donatelist.innerHTML = list;
|
||||
|
|
Loading…
Add table
Reference in a new issue