I have a very simple problem, but the official documentation and online help wasn't enough to help me with this.
I have this template countdown that counts days remaining until the new year.
I just want to change it so it counts to October 1st of 2016.
var PageComingSoon = function () {
return {
//Coming Soon
initPageComingSoon: function () {
var newYear = new Date();
newYear = new Date(newYear.getFullYear() + 1, 1 - 1, 1);
$('#defaultCountdown').countdown({until: newYear})
}
};
}();