Skip to main content

Town of Arlington, Town Bylaws, Title V, Article 18 (Short Term Rentals)

Citation
Town of Arlington, Town Bylaws, Title V, Article 18 (Short Term Rentals)
Jurisdiction
Arlington (municipal)
Source
Official source

Related Parts of This Source

Full Text

950 chars
$(function() {
var sitewrapper = $(".sitewrapper");
if (sitewrapper.length && !sitewrapper.hasClass("")) {
sitewrapper.addClass("");
}
//VISPP-4466 - we get the cookie value and set the correct stylesheet path for pages without the Page Title widget.
var useDesignThemFontSizeCss = window.visionOptions.useDesignThemFontSizeCss;
var folderPath = useDesignThemFontSizeCss == true ? window.visionOptions.currentDesignFolderPath : window.visionOptions.mainFolderPath;
if (!folderPath)
folderPath = window.visionOptions.mainFolderPath;

var getFontSizeUrl = window.location.origin + window.visionOptions.virtualApplicationPath + "Shared/GetFontSizeCookie";
var fontSize = "x-small.css";
$.frontendAjax({
url: getFontSizeUrl,
type: 'GET',
success: function (data) {
if (data && data.fontSizeCookie && data.fontSizeCookie != "") {
fontSize = data.fontSizeCookie;
}
$("#active_font").attr("href", folderPath + fontSize).attr("data-css", fontSize);
}
});
});