Skip to content

Commit

Permalink
increase essay trial length
Browse files Browse the repository at this point in the history
fixes: #366
  • Loading branch information
feross committed Aug 17, 2016
1 parent b3c0d77 commit 6ed74fb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion config-node.js
Expand Up @@ -19,7 +19,12 @@ var month = new Date().getMonth() + 1
* a referrer from an external site.
* @type {Number}
*/
exports.numFree = 1
exports.numFree = month === 1 || month === 12
? 1 // Dec-Jan, 1 essay
: month <= 9
? 3 // Feb-Sep, 3 essays
: 2 // Oct-Nov, 2 essays

/**
* Is it college essay season? Used to determine whether to show in-house ads for
* essay editing services vs. third-party ads.
Expand Down

0 comments on commit 6ed74fb

Please sign in to comment.