Fixed .sort
This commit is contained in:
parent
b5c4f8bd10
commit
d6935f1456
10
ipsum.js
10
ipsum.js
@ -49,10 +49,10 @@ function loremipsum(data) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var d = dictionary[method].concat(general),
|
var r = dictionary[method].concat(general);
|
||||||
r = d.sort(function(a, b) {
|
r.sort(function() {
|
||||||
return Math.random() > 0.5;
|
return Math.floor(Math.random()*3-1);
|
||||||
});
|
});
|
||||||
|
|
||||||
switch(unit) {
|
switch(unit) {
|
||||||
case 'c':
|
case 'c':
|
||||||
@ -65,7 +65,7 @@ function loremipsum(data) {
|
|||||||
r = stretch(r, 15*(Math.random()+1));
|
r = stretch(r, 15*(Math.random()+1));
|
||||||
var s = r.join(' ') + '. <br>';
|
var s = r.join(' ') + '. <br>';
|
||||||
for(var i = 1; i < amount; i++) {
|
for(var i = 1; i < amount; i++) {
|
||||||
r = r.sort(function() { return Math.random() > 0.5; });
|
r = r.sort(function() { return Math.floor(Math.random()*3-1); });
|
||||||
r = stretch(r, 15*(Math.random()*3+2));
|
r = stretch(r, 15*(Math.random()*3+2));
|
||||||
|
|
||||||
s += r.join(' ') + '. <br>';
|
s += r.join(' ') + '. <br>';
|
||||||
|
Loading…
Reference in New Issue
Block a user