Added Feature - Premade Ban Reasons

see 13ac9172e7
This commit is contained in:
discomrade
2022-05-22 19:42:57 -02:00
committed by Zankaria
parent 3ac86a074a
commit 43973862dd
6 changed files with 81 additions and 7 deletions

12
js/mod/mod_snippets.js Normal file
View File

@@ -0,0 +1,12 @@
/*
* mod_snippets.js
*
* Javascript snippets to be loaded when in mod mode
*
*/
function populateFormJQuery(frm, data) {
$.each(data, function(key, value){
$('[name='+key+']', frm).val(value);
});
}