Skip to main content

City of Norwalk, Fair Housing Officer

Citation
City of Norwalk, Fair Housing Officer
Jurisdiction
Norwalk (municipal)
Source
Official source

Full Text

1,734 chars
!function(){var b=function(){window.__AudioEyeSiteHash = "bdb286b8ffb7348263fbba3ca91bd057"; var a=document.createElement("script");a.src="https://wsmcdn.audioeye.com/aem.js";a.type="text/javascript";a.setAttribute("async","");document.getElementsByTagName("body")[0].appendChild(a)};"complete"!==document.readyState?window.addEventListener?window.addEventListener("load",b):window.attachEvent&&window.attachEvent("onload",b):b()}();

Fixed Nav Adjustment

function getValueTS(elem, attr) {
const val = elem.css(attr);
if (val === undefined) return undefined;
const num = parseInt(val, 10);
if (num === NaN) return undefined;
return num;
}

function clampTS(number, min, max) {
return Math.min(Math.max(number, min), max);
}

function isPageEditingTS() {
return (
$("#doneEditing").length > 0 || // In live edit
typeof DesignCenter !== "undefined" // In theme manager
);
}

const bgColorRegexTS = /rgba((d+), (d+), (d+), (d*.?d*))/;
function isTransparentTS(elem) {
const bg = elem.css('background-color');
if (typeof bg !== "string" || !bg.startsWith('rgba(')) return false;
const matchState = bg.match(bgColorRegexTS);
if (!matchState || matchState.length !== 5) return false;
const alpha = parseFloat(matchState[4], 10);
if (!(alpha >= 0 && alpha < 1)) return false;
return true;
}

function iterateLeftpads(cb) {
const containersTS = $("[class^='siteWrap'],[class*=' siteWrap']");
for (let i = 0; i < containersTS.length; i++) {
const containerTS = containersTS[i];
// Skip the body container and anything with data-skip-leftpad
if (
containerTS.id !== "bodyContainerTS" &&
containerTS.getAttribute('data-skip-leftpad') === null
) {
cb(containerTS);
}
}
}

const anchor = $("#divToolbars");
const anchor2 = $("#headerContainerTS")