43
| <![CDATA[<script type="text/javascript">
shortcut.add("ALT+1", function () {
location.href = "../../Home";
});
shortcut.add("ALT+2", function () {
location.href = "../../FaleConosco";
});
shortcut.add("ALT+3", function () {
document.getElementById("txtBusca").focus();
});
shortcut.add("ALT+4", function () {
location.href = "../../Pagina/Listar/375";
});
</script>]]>
|
76
| <![CDATA[<script type="text/javascript">
var prologue_settings = {
// skelJS (probably don't need to change anything here unless you know what you're doing)
skelJS: {
prefix: '/Content/css/style',
resetCSS: true,
boxModel: 'border',
useOrientation: true,
breakpoints: {
'wide': { range: '961', containers: 1200, grid: { gutters: 40 } },
'normal': { range: '961-1620', containers: 960, grid: { gutters: 40 } },
'narrow': { range: '961-1279', containers: 'fluid', grid: { gutters: 30 } },
'narrower': { range: '-961', containers: 'fluid', grid: { gutters: 30 } },
'mobile': { range: '-640', containers: 'fluid', lockViewport: true, grid: { gutters: 30, collapse: true } }
}
},
// skelJS Plugins (ditto; don't change unless you know what you're doing)
skelJSPlugins: {
panels: {
panels: {
sidePanel: {
breakpoints: 'narrower',
position: 'left',
size: 240,
html: '<div data-action="moveElement" data-args="nav"></div></div>'
}
},
overlays: {
sidePanelToggle: {
breakpoints: 'narrower',
position: 'top-left',
width: '3.5em',
height: '2.25em',
html: '<div data-action="togglePanel" data-args="sidePanel" class="toggle"></div>'
}
}
}
}
};
// Initialize skelJS
skel.init(prologue_settings.skelJS, prologue_settings.skelJSPlugins);
</script>]]>
|
123
| <![CDATA[<script type="text/javascript">
$(function () {
/* Initialize Tooltip */
// Add the corresponding class to an element (depending on the position you would like to show up)
// 'tiptip-top', "tiptip-right", 'tiptip-bottom', 'tiptip-left'
// and the text you want to appear in the tooltip, in the title attribute of the same element
$(".tiptip-top").tipTip({ maxWidth: "auto", edgeOffset: 1, delay: 100, fadeIn: 200, fadeOut: 200, defaultPosition: "top" });
$(".tiptip-right").tipTip({ maxWidth: "auto", edgeOffset: 1, delay: 100, fadeIn: 200, fadeOut: 200, defaultPosition: "right" });
$(".tiptip-bottom").tipTip({ maxWidth: "auto", edgeOffset: 1, delay: 100, fadeIn: 200, fadeOut: 200, defaultPosition: "bottom" });
$(".tiptip-left").tipTip({ maxWidth: "auto", edgeOffset: 1, delay: 100, fadeIn: 200, fadeOut: 200, defaultPosition: "left" });
});
</script>]]>
|
135
| <![CDATA[<script>
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,"script",'https://www.google-analytics.com/analytics.js','ga');
ga('create', "G-BSH7H6CZ9X", 'auto');
ga('send', 'pageview');
</script>]]>
|
153
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|
1100
| <![CDATA[<script>
function ready(fn) {
if (document.readyState !== 'loading') {
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
ready(function () {
accessibilityButtons();
});
$(document).ready(function () {
accessibilityButtons();
})
accessibilityButtons({
font: {
nameButtonIncrease: 'A+', // Default
ariaLabelButtonIncrease: 'Increase Font', // Default
nameButtonDecrease: 'A-', // Default
ariaLabelButtonDecrease: 'Decrease Font' // Default
},
contrast: {
nameButtonAdd: 'Contraste', // Default
ariaLabelButtonAdd: 'Contraste', // Default
nameButtonRemove: 'Remover Contraste', // Default
ariaLabelButtonRemove: 'Remover Contraste' // Default
}
});
</script>]]>
|
1149
| <![CDATA[<script>
$(document).ready(function () {
if (!localStorage.pureJavaScriptCookies) {
document.querySelector(".box-cookies").classList.remove('hide');
}
var acceptCookies = () => {
document.querySelector(".box-cookies").classList.add('hide');
localStorage.setItem("pureJavaScriptCookies", "accept");
};
var btnCookies = document.querySelector(".btn-cookies");
btnCookies.addEventListener('click', acceptCookies);
});
</script>]]>
|