49
| <![CDATA[<script type="application/json" class="joomla-script-options new">{"csrf.token":"cf4178122cbcdb6e9f36f94511722365","system.paths":{"root":"","base":""},"rl_modals":{"class":"modal_link","defaults":{"opacity":"0.8","maxWidth":"95%","maxHeight":"95%","current":"{current} \/ {total}","previous":"previous","next":"next","close":"close","xhrError":"O carregamento deste conte\u00fado falhou.","imgError":"O carregamento desta imagem falhou."},"auto_correct_size":1,"auto_correct_size_delay":0}}</script>]]>
|
60
| <![CDATA[<script type="text/javascript">
jQuery(window).on('load', function() {
new JCaption('img.caption');
});
jQuery(function($){ $(".hasTooltip").tooltip({"html": true,"container": "body"}); });
</script>]]>
|
104
| <![CDATA[<script>
// Read cookie
function getCookie(strCookie)
{
var strName = strCookie + "=";
var arrCookies = document.cookie.split(';');
for (var i = 0; i < arrCookies.length; i++) {
var strValorCookie = arrCookies[i];
while (strValorCookie.charAt(0) == ' ') {
strValorCookie = strValorCookie.substring(1, strValorCookie.length);
}
if (strValorCookie.indexOf(strName) == 0) {
return strValorCookie.substring(strName.length, strValorCookie.length);
}
}
return '';
}
// Set cookie
function setCookie(name, value, expires, path, domain, secure)
{
// set time, it's in milliseconds
var today = new Date();
today.setTime( today.getTime() );
/* if the expires variable is set, make the correct expires time, the current script below will set
it for x number of days, to make it for hours, delete * 24, for minutes, delete * 60 * 24 */
path = '/';
if ( expires ) {
expires = expires * 1000 * 60 * 60 * 24;
}
var expires_date = new Date( today.getTime() + (expires) );
document.cookie = name + "=" +escape( value ) +
( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
( ( path ) ? ";path=" + path : "" ) +
( ( domain ) ? ";domain=" + domain : "" ) +
( ( secure ) ? ";secure" : "" );
}
// Erase cookie
function eraseCookie(name)
{
setCookie(name, '', -1);
}
jQuery.noConflict();
(function( $ ) {
$(function() {
//Pega a temperatura
$.ajax({
url: 'http://api.weatherunlocked.com/api/current/-8.05428,-34.8813?app_id=6ec55f2f&app_key=ebefdb91fcc7ba69d7bbc624a7534ec4',
type: 'GET',
crossDomain: true,
dataType: 'text',
success: function(data) {
let jsonObject = JSON.parse(data);
$( ".weather" ).empty();
$( ".weather" ).append( jsonObject.temp_c+"° C" );
}
});
//aumenta o tamanho da fonte
$("#aumentar-fonte").click(function () {
var size = $("*").css('font-size');
size = size.replace('px', '');
size = parseInt(size) + 1;
$("*").animate({'font-size' : size + 'px'});
return false;
});
$("#diminuir-fonte").click(function () {
var size = $("*").css('font-size');
size = size.replace('px', '');
size = parseInt(size) - 1;
$("*").animate({'font-size' : size + 'px'});
return false;
});
//controle de contraste
// var cookieContrast = getCookie("highContrast");
// if (cookieContrast == "highContrast"){
// $("body").addClass("highContrast");
// }
// $("a.highContrast").click(function(){
// var x = getCookie("highContrast");
// if (x == "highContrast") {
// $("body").removeClass("highContrast");
// eraseCookie("highContrast");
// } else {
// $("body").addClass("highContrast");
// setCookie("highContrast", "highContrast");
// }
// return (false);
// });
});
})(jQuery);
</script>]]>
|
372
| <![CDATA[<script type="text/javascript">
jQuery.noConflict();
(function( $ ) {
$(function() {
$( "#boom" ).click(function( event ) {
var category_selected = $("#category-select").val();
var campo_busca = $("#s").val();
var url = 'index.php?option=com_buscasite&busca='+campo_busca+'&catid='+category_selected;
window.location.href= url;
});
});
})(jQuery);
</script>]]>
|
570
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6PJEMXY6S5', { 'anonymize_ip': true });
</script>]]>
|