Added Feature - Premade Ban Reasons

see 13ac9172e7
This commit is contained in:
discomrade 2022-05-22 19:42:57 -02:00
parent 3725d27e72
commit bf4fb6d0e8
6 changed files with 68 additions and 2 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);
});
}