first version of reminder web application

This commit is contained in:
Finn Christiansen 2018-12-29 18:31:10 +01:00
parent e43cba4769
commit 0c4fed2a2b
7 changed files with 316 additions and 1 deletions

6
static/js/reminder.js Normal file
View file

@ -0,0 +1,6 @@
document.addEventListener("DOMContentLoaded", function(event) {
document.getElementById('icsfile').addEventListener("change", function(e){
var filename = this.value.replace(/^.*[\\\/]/, '');
document.getElementById('filename').setAttribute('data-content', filename);
});
});