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