66
| <![CDATA[<script type="text/javascript">
function ShowToatr(tipo, texto) {
toastr.options = {
"closeButton": true,
"debug": false,
"newestOnTop": true,
"progressBar": false,
"positionClass": "toast-top-right",
"preventDuplicates": true,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "0",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
};
toastr[tipo](texto);
}
</script>]]>
|
109
| <![CDATA[<script>
$(function () {
if ($('.head-to-fixed').length) {
$('.body-fixed-content').html("<div class='kt-portlet'><div class='kt-portlet__head'>" + $('.head-to-fixed').html() + "</div></div>").hide();
const el_position_top = $('.head-to-fixed').offset().top;
const el_height = $('.head-to-fixed').outerHeight();
const width_window = $(window).width();
$(window).scroll(function () {
var scroll_top = $(window).scrollTop();
if (scroll_top > (el_position_top + el_height) && width_window > 576) {
$('.body-fixed-content').fadeIn('fast');
} else {
$('.body-fixed-content').fadeOut('fast');
}
});
}
});
</script>]]>
|
137
| <![CDATA[<script type="text/javascript">
$(document).ready(() => {
let url = location.href.replace(/\/$/, "");
if (location.hash) {
const hash = url.split("#");
$('.kt-portlet--tabs .kt-portlet__head a[href="#' + hash[1] + '"]').tab("show");
url = location.href.replace(/\/#/, "#");
history.replaceState(null, null, url);
setTimeout(() => {
$(window).scrollTop(0);
}, 400);
}
$('a[data-toggle="tab"]').on("click", function () {
let novaUrl;
const hash = $(this).attr("href");
novaUrl = url.split("#")[0] + hash;
history.replaceState(null, null, novaUrl);
});
});
</script>]]>
|
166
| <![CDATA[<script type="text/javascript">
//<![CDATA[
(window.Sys && Sys._Application && Sys.Observer)||document.write('<script type="text/javascript" src="/ScriptResource.axd?d=Gqm3YSwtHhp-cdxYRmvbO2vOC86ER5HMr_rEYGrg2DNRVqMGI5NTiYjtTGOL3ogNLLp2JS8YA9EBxrJeOKLOlXQfrCUgJwhX_AGhf6Tt-fZ9LwUn35b-plNyMl48zae9kgFQ1GNdCJEHabdHoV7-nDWjO7KouEbRhScrZ0z1qZ01&t=ffffffffe6d5a9ac"><\/script>');//]]>
</script>]]>
|