github.io/it1/bibliotek/bibliotek.js
2020-03-26 03:07:07 +01:00

16 lines
592 B
JavaScript

var add = function() {
db.collection("bibliotek").add({
tittel: $('#title')[0].value,
forfatter: $('#author')[0].value,
forlag: $('#publisher')[0].value,
terningkast: $('#rating')[0].value,
utgitt: new firebase.firestore.Timestamp(Date.parse(Date($('#published')[0].value))/1000)
}).then(function() {
$('#status').html('<p style="color: green;">La til bok '+$('#title')[0].value+'!</p>')
}).catch(function() {
$('#status').html('<p style="color: red;">Problem med å legge til bok '+$('#title')[0].value+'!</p>')
})
}