(function () { "use strict"; var Home = { initialized: false, initialize: function () { if (this.initialized) return; this.initialized = true; this.build(); this.events(); }, build: function (options) { }, events: function () { $('#clock').countdown('2024/03/17 10:00:00', function(event) { $(this).html(event.strftime('%-D %!D:d,d; %Hh %Mm %Ss')); }); } }; Home.initialize(); })();