forked from Ailur/burgernotes-server
This commit is contained in:
parent
5970b656bb
commit
10514e5935
|
@ -106,6 +106,11 @@ body {
|
||||||
border-top-width: 1px;
|
border-top-width: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notesDiv {
|
||||||
|
height: calc(100% - 50px);
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
.notesBar button {
|
.notesBar button {
|
||||||
width: calc(100% - 7px - 7px - 3.5px);
|
width: calc(100% - 7px - 7px - 3.5px);
|
||||||
height: 35px;
|
height: 35px;
|
||||||
|
|
|
@ -132,8 +132,10 @@ function displayPrompt(message, callback) {
|
||||||
errorInput.value = ""
|
errorInput.value = ""
|
||||||
|
|
||||||
closeErrorButton.addEventListener("click", (event) => {
|
closeErrorButton.addEventListener("click", (event) => {
|
||||||
|
if (callback) {
|
||||||
callback(errorInput.value)
|
callback(errorInput.value)
|
||||||
callback = undefined
|
callback = undefined
|
||||||
|
}
|
||||||
});
|
});
|
||||||
errorInput.addEventListener("keyup", (event) => {
|
errorInput.addEventListener("keyup", (event) => {
|
||||||
if (event.key == "Enter") {
|
if (event.key == "Enter") {
|
||||||
|
|
Loading…
Reference in New Issue