Quick fix

This commit is contained in:
sava 2020-03-26 02:34:18 +01:00
parent f7970ddb6b
commit 9e790c75e6

View File

@ -7,9 +7,9 @@ var add = function() {
terningkast: $('#rating')[0].value, terningkast: $('#rating')[0].value,
utgitt: $('#published')[0].value utgitt: $('#published')[0].value
}).then(function() { }).then(function() {
$('#status').html('<p style="color: green;">La til bok '+$('#title').value+'!</p>') $('#status').html('<p style="color: green;">La til bok '+$('#title')[0].value+'!</p>')
}).catch(function() { }).catch(function() {
$('#status').html('<p style="color: red;">Problem med å legge til bok '+$('#title').value+'!</p>') $('#status').html('<p style="color: red;">Problem med å legge til bok '+$('#title')[0].value+'!</p>')
}) })
} }