mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
Merge branch 'master' of github.com:seejohnrun/haste-server
This commit is contained in:
commit
4870158430
2 changed files with 4 additions and 3 deletions
2
about.md
2
about.md
|
@ -50,7 +50,7 @@ pastes.
|
||||||
|
|
||||||
## Open Source
|
## Open Source
|
||||||
|
|
||||||
Haste can easily be installed behind your network, and its all open source!
|
Haste can easily be installed behind your network, and it's all open source!
|
||||||
|
|
||||||
* [haste-client](https://github.com/seejohnrun/haste-client)
|
* [haste-client](https://github.com/seejohnrun/haste-client)
|
||||||
* [haste-server](https://github.com/seejohnrun/haste-server)
|
* [haste-server](https://github.com/seejohnrun/haste-server)
|
||||||
|
|
|
@ -6,13 +6,14 @@ var PhoneticKeyGenerator = function(options) {
|
||||||
// Generate a phonetic key
|
// Generate a phonetic key
|
||||||
PhoneticKeyGenerator.prototype.createKey = function(keyLength) {
|
PhoneticKeyGenerator.prototype.createKey = function(keyLength) {
|
||||||
var text = '';
|
var text = '';
|
||||||
|
var start = Math.round(Math.random());
|
||||||
for (var i = 0; i < keyLength; i++) {
|
for (var i = 0; i < keyLength; i++) {
|
||||||
text += (i % 2 == 0) ? this.randConsonant() : this.randVowel();
|
text += (i % 2 == start) ? this.randConsonant() : this.randVowel();
|
||||||
}
|
}
|
||||||
return text;
|
return text;
|
||||||
};
|
};
|
||||||
|
|
||||||
PhoneticKeyGenerator.consonants = 'bcdfghjklmnpqrstvwxy';
|
PhoneticKeyGenerator.consonants = 'bcdfghjklmnpqrstvwxyz';
|
||||||
PhoneticKeyGenerator.vowels = 'aeiou';
|
PhoneticKeyGenerator.vowels = 'aeiou';
|
||||||
|
|
||||||
// Get an random vowel
|
// Get an random vowel
|
||||||
|
|
Loading…
Reference in a new issue