X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/docs/source/gen-names.html diff --git a/docs/source/gen-names.html b/docs/source/gen-names.html new file mode 100644 index 00000000..aad0bd3e --- /dev/null +++ b/docs/source/gen-names.html @@ -0,0 +1,30 @@ + + + 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