in assets/js/main.js [145:159]
$(function() {
$('article').each(function() {
$(this).readingTime({
readingTimeTarget: $(this).find('.eta'),
wordCountTarget: $(this).find('.words'),
prependTimeString: 'Read Time: ',
remotePath: $(this).attr('data-file'),
remoteTarget: $(this).attr('data-target')
});
});
});