File "coming-soon.js"
Full Path: /home/isoftco/public_html/hrm/public/assets/admin/pages/scripts/coming-soon.js
File size: 367 bytes
MIME-type: text/plain
Charset: utf-8
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());
}
};
}();