batch readme

This commit is contained in:
darthsandmann
2016-10-11 19:01:39 +02:00
parent 84252d2223
commit 4e49e87940
19 changed files with 548 additions and 0 deletions

View File

@ -0,0 +1,11 @@
function confirmDelete_p (event_opl) {
if ((event_opl.target.tagName.toLowerCase() == 'a') && (event_opl.target.className == "clDelete")) {
// Klick auf Link zum Löschen
// Ihre Ergänzung
}
}
window.onload = function () {
let body_o = document.getElementsByTagName('body')[0];
body_o.addEventListener('click', confirmDelete_p, false);
}