minor changes

This commit is contained in:
adrianvic 2023-12-21 12:40:14 -03:00
commit 8b4cbfab34
2 changed files with 3 additions and 3 deletions

View file

@ -139,7 +139,7 @@
position: relative;
z-index: 1000;
color: black;
font-size: 18pt;
font-size: 10pt;
height: 24px;
}

View file

@ -14,7 +14,7 @@ function showMessage(message, isError)
if (status)
{
status.innerText = message;
status.style.color = isError ? "blue" : "green";
status.style.color = isError ? "red" : "green";
}
}
@ -1790,7 +1790,7 @@ function inkInitialize()
}
catch (e)
{
displayError("inkError" + e.message);
displayError("inkInitialize " + e.toString() + "\n" + e.stack);
}
}