powerdns-admin/app/static/admin/pages/scripts/coming-soon.js
2015-12-13 16:34:12 +07:00

14 lines
380 B
JavaScript

var ComingSoon = function () {
return {
//main function to initiate the module
init: function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
}
};
}();