powerdns-admin/app/static/admin/pages/scripts/coming-soon.js

14 lines
380 B
JavaScript
Raw Normal View History

2015-12-13 09:34:12 +00:00
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());
}
};
}();