spray icon indicating copy to clipboard operation
spray copied to clipboard

An open-source speed-reading application written in Javascript

Results 7 spray issues
Sort by recently updated
recently updated
newest added

At least on chrome the code : ``` if(allWords[i].indexOf('.') != -1){ tmpWords[t] = allWords[i].replace('.', '•'); } ``` is replacing all periods with the html? equivilent... but this is not displaying...

I've found that this piece of code in the pivot() function does not produce the expected results: ``` word = '.......' + word; var tail = 22 - (word.length +...

if((length % 2) === 0){ start = word.slice(0, word.length/2); end = word.slice(word.length/2, word.length); } else{ start = word.slice(0, word.length/2); end = word.slice(word.length/2, word.length); } This is an if clause where...

Words with a length of more than 15 characters generate errors

Please merge into **`gh-pages`** branch I suggest deleting ~~master~~ branch altogether because all the dev is happening in `gh-pages` and served from there by GH Pages.

Max word length is 22 chars, this seems slightly low because there are plenty of longer words. If you get a longer word app crashes. Uncaught RangeError: Invalid array length

if((length % 2) === 0){ start = word.slice(0, word.length/2); end = word.slice(word.length/2, word.length); } else{ start = word.slice(0, word.length/2); end = word.slice(word.length/2, word.length); }