Double reading speed estimate. People skim.

This commit is contained in:
Robin Ward 2013-12-13 12:23:20 -05:00
parent 4fe83f8385
commit 26e75c5ceb
1 changed files with 2 additions and 2 deletions

View File

@ -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'),