mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Removed custom.js file and include
This commit is contained in:
@@ -138,7 +138,6 @@ if ($config['page_refresh']) { echo(' <meta http-equiv="refresh" content="'.$co
|
||||
<script src="js/typeahead.min.js"></script>
|
||||
<script src="js/hogan-2.0.0.js"></script>
|
||||
<script src="js/jquery.cycle2.min.js"></script>
|
||||
<script src="js/custom.js"></script>
|
||||
<?php
|
||||
if ($config['favicon']) { echo(' <link rel="shortcut icon" href="'.$config['favicon'].'" />' . "\n"); }
|
||||
?>
|
||||
|
@@ -1,22 +0,0 @@
|
||||
$.extend({
|
||||
password: function (length, special) {
|
||||
var iteration = 0;
|
||||
var password = "";
|
||||
var randomNumber;
|
||||
if(special === undefined){
|
||||
special = false;
|
||||
}
|
||||
while(iteration < length){
|
||||
randomNumber = (Math.floor((Math.random() * 100)) % 94) + 33;
|
||||
if(!special){
|
||||
if ((randomNumber >=33) && (randomNumber <=47)) { continue; }
|
||||
if ((randomNumber >=58) && (randomNumber <=64)) { continue; }
|
||||
if ((randomNumber >=91) && (randomNumber <=96)) { continue; }
|
||||
if ((randomNumber >=123) && (randomNumber <=126)) { continue; }
|
||||
}
|
||||
iteration++;
|
||||
password += String.fromCharCode(randomNumber);
|
||||
}
|
||||
return password;
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user