Skip to content

Commit

Permalink
Doc: Allow setting period from parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Jan 23, 2023
1 parent 56f06fa commit 6f3ad4b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Assets/WebsiteAssets/templates/plans.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@
});
setupBetaHandling(urlQuery);
applyPeriod('yearly');
if (urlQuery.get('period') === 'monthly') {
// Nothing - this is the default
} else {
applyPeriod('yearly');
}
});
</script>
</div>

0 comments on commit 6f3ad4b

Please sign in to comment.