:
[*OLA AMIGOS, PRECISO DE AJUDA AQUI, NO APP 3.0 DELIVERY, AO FAZER TODOS OS PROCEDIMENTOS CONFORME O CURSO DAVID, AO BAIXAR O ARQUIVO DO bootblocks E SUBIR PARA O SERVIDOR JÁ RODANDO O PAINEL OK, ACONTECE O SEGUINTE ERRO AO RODAR PAGINA HOME DO DOMINIO PERSONALIZADO]
var url, url_imagem, identificador, ref, cidade_id, bairro_id;
// Descreva esta função...
function verifica_parametros() {
clearInterval(splash);
if (getParameters()['l'] === undefined ? "" : getParameters()['l']) {
localStorage.setItem('identificador',getParameters()['l'] === undefined ? "" : getParameters()['l']);
localStorage.setItem('uso_individual','sim');
identificador = getParameters()['l'] === undefined ? "" : getParameters()['l'];
if (bairro_id == 0) {
window.location.href = "local.php?l="+identificador+"";
} else {
window.location.href = "estabelecimento.php?l="+identificador+"";
}
} else {
localStorage.setItem('uso_individual','nao');
if (cidade_id == 0) {
window.location.href = "local.php";} else {
window.location.href = "home.php?cidade="+cidade_id+"&bairro="+bairro_id+"";
}
}
}
function mathRandomInt(a, b) {
if (a > b) {
// Swap a and b to ensure a is smaller.
var c = a;
a = b;
b = c;
}
return Math.floor(Math.random() * (b - a + 1) + a);
}