minor changes
This commit is contained in:
parent
65432fd270
commit
8b4cbfab34
2 changed files with 3 additions and 3 deletions
|
|
@ -139,7 +139,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
color: black;
|
color: black;
|
||||||
font-size: 18pt;
|
font-size: 10pt;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ function showMessage(message, isError)
|
||||||
if (status)
|
if (status)
|
||||||
{
|
{
|
||||||
status.innerText = message;
|
status.innerText = message;
|
||||||
status.style.color = isError ? "blue" : "green";
|
status.style.color = isError ? "red" : "green";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1790,7 +1790,7 @@ function inkInitialize()
|
||||||
}
|
}
|
||||||
catch (e)
|
catch (e)
|
||||||
{
|
{
|
||||||
displayError("inkError" + e.message);
|
displayError("inkInitialize " + e.toString() + "\n" + e.stack);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue