/** Global generic init */ $.ready(function () { // Checkbox UI (checkbox CSS and hidden input with int value) $('.Row.checkbox').forEach(function(x) { var inp = x.querySelector('input'); var box = x.querySelector('.box'); $(box).toggleClass('checked', inp.value); var hdl = function() { inp.value = 1 - inp.value; $(box).toggleClass('checked', inp.value) }; $(x).on('click', hdl).on('keypress', cr(hdl)); }); // Expanding boxes on mobile $('.Box.mobcol').forEach(function(x) { var h = x.querySelector('h2'); var hdl = function() { $(x).toggleClass('expanded'); }; $(h).on('click', hdl).on('keypress', cr(hdl)); }); qsa('form').forEach(function(x) { $(x).on('keypress', function(e) { if ((e.keyCode == 10 || e.keyCode == 13) && e.ctrlKey) { x.submit(); } }) }); // loader dots... setInterval(function () { $('.anim-dots').each(function (x) { var $x = $(x); var dots = $x.html() + '.'; if (dots.length == 5) dots = '.'; $x.html(dots); }); }, 1000); // flipping number boxes with the mouse wheel $('input[type=number]').on('mousewheel', function(e) { var $this = $(this); var val = +$this.val(); if (isNaN(val)) val = 1; var step = +($this.attr('step') || 1); var min = +$this.attr('min'); var max = +$this.attr('max'); if(e.wheelDelta > 0) { val += step; } else { val -= step; } if (typeof min != 'undefined') val = Math.max(val, +min); if (typeof max != 'undefined') val = Math.min(val, +max); $this.val(val); if ("createEvent" in document) { var evt = document.createEvent("HTMLEvents"); evt.initEvent("change", false, true); $this[0].dispatchEvent(evt); } else { $this[0].fireEvent("onchange"); } e.preventDefault(); }); var errAt = location.search.indexOf('err='); if (errAt !== -1 && qs('.Box.errors')) { var errs = location.search.substr(errAt+4).split(','); var hres = []; errs.forEach(function(er) { var lbl = qs('label[for="'+er+'"]'); if (lbl) { lbl.classList.add('error'); hres.push(lbl.childNodes[0].textContent.trim().replace(/: ?$/, '')); } else { hres.push(er); } }); qs('.Box.errors .list').innerHTML = hres.join(', '); qs('.Box.errors').classList.remove('hidden'); } Modal.init(); Notify.init(); // remove tabindixes from h2 if wide if (window.innerWidth > 550) { qsa('.Box h2').forEach(function (x) { x.removeAttribute('tabindex'); }); var br = qs('#brand'); br && br.removeAttribute('tabindex'); } }); $._loader = function(vis) { $('#loader').toggleClass('show', vis); }; $.ready(function() { setTimeout(function() { $('#content').addClass('load'); }, 1); });