freifunkmanager/js/global.js

17 lines
370 B
JavaScript
Raw Normal View History

2016-06-23 17:31:39 +02:00
var toast = document.getElementById("toast")
function notify(key){
toast.MaterialSnackbar.showSnackbar({
message:"New Nodes with nodeid '"+key+"'!",
actionHandler: function(event) {
console.log(event)
},
actionText: 'Edit',
timeout: 3000
});
}
var refreshButton = document.getElementById("refresh")
refreshButton.addEventListener('click', refreshData)