mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
fixed all random string functions
This commit is contained in:
parent
c533837d06
commit
aa5b1b85ae
2 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ function readCookie(name)
|
|||
|
||||
function randomString()
|
||||
{
|
||||
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
|
||||
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
||||
var string_length = 20;
|
||||
var randomstring = '';
|
||||
for (var i = 0; i < string_length; i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue