From 9e790c75e6464c25ab481412dcda836bb57e6526 Mon Sep 17 00:00:00 2001 From: sava Date: Thu, 26 Mar 2020 02:34:18 +0100 Subject: [PATCH] Quick fix --- it1/bibliotek/bibliotek.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/it1/bibliotek/bibliotek.js b/it1/bibliotek/bibliotek.js index 220cdd5..0368bd6 100644 --- a/it1/bibliotek/bibliotek.js +++ b/it1/bibliotek/bibliotek.js @@ -7,9 +7,9 @@ var add = function() { terningkast: $('#rating')[0].value, utgitt: $('#published')[0].value }).then(function() { - $('#status').html('

La til bok '+$('#title').value+'!

') + $('#status').html('

La til bok '+$('#title')[0].value+'!

') }).catch(function() { - $('#status').html('

Problem med å legge til bok '+$('#title').value+'!

') + $('#status').html('

Problem med å legge til bok '+$('#title')[0].value+'!

') }) }