The Polyglot Gathering 2015 just ended and I again had a lot of fun organizing it. If you attended the event, here’s a fun non-authoritative checklist I created in order to figure out whether you fully experienced the event 😉 Check off what you did.
Thank you for coming! The participants are what makes this conference awesome. See you next year! <3
$(document).on('click', '.checkBoxLeft', function () {
var total = $("#theList input[type=checkbox]").length; var numChecked = $("#theList input[type=checkbox]:checked").length; if (numChecked == 1) { $("#progress").css('background', 'red');
} else if (numChecked == 3) { $("#progress").css('background', 'orange'); } else if (numChecked == 5) { $("#progress").css('background', 'yellow'); } else if (numChecked == 8) { $("#progress").css('background', 'lime'); } else if (numChecked == 14) { $("#progress").css('background', 'deepskyblue'); } var prog = numChecked * 100 / total; $("#progress").css("width", prog + "%"); $("#progress_word").text(Math.round(prog) + "%");
});