1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 17:59:31 +02:00

Don't include CSS, javascript and image data directly in the code

This commit is contained in:
Evgeniy Khramtsov 2017-10-09 23:35:42 +03:00
parent d22ee24e72
commit 5a184b0433
21 changed files with 606 additions and 722 deletions

15
priv/js/admin.js Normal file
View file

@ -0,0 +1,15 @@
function selectAll() {
for(i=0;i<document.forms[0].elements.length;i++)
{ var e = document.forms[0].elements[i];
if(e.type == 'checkbox')
{ e.checked = true; }
}
}
function unSelectAll() {
for(i=0;i<document.forms[0].elements.length;i++)
{ var e = document.forms[0].elements[i];
if(e.type == 'checkbox')
{ e.checked = false; }
}
}