20 lines
388 B
JavaScript
Executable file
20 lines
388 B
JavaScript
Executable file
|
|
|
|
function summonerLookUp(){var a="";a=$("#name").val().replace(/\s/g,"").trim().toLowerCase(),""!==a&&(location.href=location.pathname+"?userName="+a)}
|
|
|
|
|
|
function imgError(image){
|
|
image.onerror = "";
|
|
image.src = "./img/black.png";
|
|
return true;
|
|
}
|
|
|
|
function imgDelete(image){
|
|
image.onerror = "";
|
|
image.src = "./img/null.png";
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|