Removed custom.js file and include

This commit is contained in:
laf
2014-10-07 10:28:13 +01:00
parent 794c33e57b
commit 48bc04bfcc
2 changed files with 0 additions and 23 deletions

View File

@@ -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"); }
?>

View File

@@ -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;
}
});