mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-13 00:50:27 +00:00
14 lines
380 B
JavaScript
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());
|
|
}
|
|
|
|
};
|
|
|
|
}(); |