feat: added company info support
This commit is contained in:
@@ -70,4 +70,9 @@ function showDialog(dialogPage, variables) {
|
||||
modalVariables = variables;
|
||||
|
||||
$('#modal-content').load('/pages/dialogs/' + dialogPage + '.html');
|
||||
}
|
||||
|
||||
function randomIntFromInterval(min, max) { // min and max included
|
||||
var rand = Math.floor(Math.random() * (max - min + 1) + min);
|
||||
return rand;
|
||||
}
|
Reference in New Issue
Block a user