Console: Rename all the js init() functions

This commit is contained in:
zzz
2020-05-27 12:35:12 +00:00
parent f8df7eba7f
commit 3fac44874e
5 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
function init()
function initDelete()
{
var buttons = document.getElementsByClassName("delete1");
for(index = 0; index < buttons.length; index++)
@ -35,5 +35,5 @@ function addClickHandler2(elem)
}
document.addEventListener("DOMContentLoaded", function() {
init();
initDelete();
}, true);