github.io/it1/bibliotek/bibliotek.js

16 lines
620 B
JavaScript
Raw Normal View History

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