X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/gen-names.html diff --git a/docs/source/gen-names.html b/docs/source/gen-names.html deleted file mode 100644 index aad0bd3e..00000000 --- a/docs/source/gen-names.html +++ /dev/null @@ -1,30 +0,0 @@ - - - The source code - - - - -
(function(){
-    var lasts = ['Jones', 'Smith', 'Lee', 'Wilson', 'Black', 'Williams', 'Lewis', 'Johnson', 'Foot', 'Little', 'Vee', 'Train', 'Hot', 'Mutt'];
-    var firsts = ['Fred', 'Julie', 'Bill', 'Ted', 'Jack', 'John', 'Mark', 'Mike', 'Chris', 'Bob', 'Travis', 'Kelly', 'Sara'];
-    var lastLen = lasts.length, firstLen = firsts.length;
-
-    Ext.ux.getRandomInt = function(min, max){
-        return Math.floor(Math.random() * (max - min + 1)) + min;
-    }
-
-    Ext.ux.generateName = function(){
-        var name = firsts[Ext.ux.getRandomInt(0, firstLen-1)] + ' ' + lasts[Ext.ux.getRandomInt(0, lastLen-1)];
-        if(Ext.ux.generateName.usedNames[name]){
-            return Ext.ux.generateName();
-        }
-        Ext.ux.generateName.usedNames[name] = true;
-        return name;
-    }
-    Ext.ux.generateName.usedNames = {};
-
-})();
-
- - \ No newline at end of file