3459
| <![CDATA[<script>
function votarOuvidoria(votoNumber){
$('.notas_avaliacao a').hide();
$.ajax({
type: "POST",
data: {
"voto":votoNumber,
"_token": "CDVDeVQi48kwJ93CtDD6xW1MTaTVV2q8JGwlqHO7"
},
url: "https://davidcanabarro.rs.gov.br/ajax/ouvidoria//answer_rating",
success: function(data) {
if (data == 'sucesso') {
$('#conteudo_votar').hide();
$('#conteudo_votado').show();
$('#span_voto').html(votoNumber);
}
console.log(data);
},
error: function(e) {
console.log(e);
}
});
}
function validarDocumentoResposta(){
var fileInput = document.getElementById('documento_resposta').files[0];
var maxSize = 2048000; // in bytes
var extPermitidas = ['jpg', 'jpeg', 'png', 'pdf', 'doc', 'docx', 'xls', 'xlsx'];
console.log(fileInput.name);
//aqui a sua função normal
if (fileInput) {
var fileSize = fileInput.size; // in bytes
var fileName = fileInput.name;
var fileExtension = fileName.substring(fileName.lastIndexOf('.')+1, fileName.length) || fileName;
if (fileSize > maxSize) {
alert('Arquivo excedeu o limite permitido, por favor escolha arquivos com no maximo 2MB*');
document.getElementById("documento_resposta").value = "";
} else if(extPermitidas.indexOf(fileExtension) < 0){
alert('Extensão de arquivo/foto não permitida. (utilize jpg, jpeg, png, pdf, doc, docx, xls ou xlsx)');
document.getElementById("documento_resposta").value = "";
}
}
}
function recaptchaCallback() {
$('.btn-recaptcha').removeAttr('disabled');
}
function recaptchaExpired() {
$('.btn-recaptcha').attr('disabled','disabled');
}
function recaptchaCallbackResposta() {
$('#btn-enviar-complementos').removeAttr('disabled');
}
function recaptchaExpiredResposta() {
$('#btn-enviar-complementos').attr('disabled','disabled');
}
$('select[name="form_type"]').change(function(){
if ($(this).val() == 2) {
$('#ano_ocorrencia').show();
$('#ano_ocorrencia').attr('required', true);
} else{
$('#ano_ocorrencia').val('');
$('#ano_ocorrencia').hide();
$('#ano_ocorrencia').attr('required', false);
}
});
$('#documento_resposta').change(function(){
validarDocumentoResposta();
});
</script>]]>
|
3535
| <![CDATA[<script>
$(window).load(function() {
var idDivBusca = 'searchGoogleContentLg';
setTimeout(function() {
if ($(window).width() < 992) {
idDivBusca = 'searchGoogleContent';
}
var myCallback = function() {
if (document.readyState == 'complete') {
google.search.cse.element.render({
div: idDivBusca,
tag: 'search'
});
} else {
google.setOnLoadCallback(function() {
google.search.cse.element.render({
div: idDivBusca,
tag: 'search'
});
}, true);
}
};
window.__gcse = {
parsetags: 'explicit',
callback: myCallback
};
(function() {
var cx = '011042267039235339792:tfnjhxgvhng';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
}, 2000);
});
</script>]]>
|