mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
18 lines
392 B
JavaScript
18 lines
392 B
JavaScript
|
|
function messageBox(message) {
|
|||
|
|
window.alert(message);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
function setColorInStorage() {
|
|||
|
|
if (typeof (Storage) !== "undefined") {
|
|||
|
|
localStorage.setItem("color",
|
|||
|
|
document.getElementById("colorBox").value);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
function getColorFromStorage() {
|
|||
|
|
if (typeof (Storage) !== "undefined") {
|
|||
|
|
document.getElementById("colorBox").value =
|
|||
|
|
localStorage.getItem("color");
|
|||
|
|
}
|
|||
|
|
}
|