mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Double reading speed estimate. People skim.
This commit is contained in:
parent
4fe83f8385
commit
26e75c5ceb
@ -164,8 +164,8 @@ Discourse.Topic = Discourse.Model.extend({
|
||||
var wordCount = this.get('word_count');
|
||||
if (!wordCount) return;
|
||||
|
||||
// Avg for 250 words per minute.
|
||||
var minutes = Math.floor(wordCount / 250.0);
|
||||
// Avg for 500 words per minute when you account for skimming
|
||||
var minutes = Math.floor(wordCount / 500.0);
|
||||
return minutes;
|
||||
}.property('word_count'),
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user