- function Abrir(){
- $('body').attr('style', 'overflow:hidden !important');
- $("#Sobrep,#Flut").show();
- }
- function Fechar(){
- $('#Sobrep,#Flut,#Menu-Pedidos,#LoginBox').hide();
- $('body').removeAttr('style');
- $("#Conteudo").html('');
- }
- function Login(){
- Abrir();
- $("#Conteudo").html('<div class="carregar"></div>').show();
- $("#Conteudo").load("Acesso.php?random=" + Math.random()*99999, function() {});
- }
- function Produto(id){
- Abrir();
- $("#Conteudo").html('<div class="carregar"></div>').show();
- $("#Conteudo").load("App/Produtos/Produto.php?id="+id+"&random=" + Math.random()*99999, function() {});
- }
- function Pedidos(){
- Abrir();
- $("#Conteudo").html('<div class="carregar"></div>').show();
- $("#Conteudo").load("App/Pedidos/Cesta.php?random=" + Math.random()*99999, function() {});
- }
- function CestaQuantidade(){
- $("#qntItens").load("App/Pedidos/QuantCesta.php?random=" + Math.random()*99999, function() {});
- }
- $(document).keydown(function(e) {
- if (e.keyCode == 27) {
- Fechar();
- }
- });
- function Notificacao(texto,icone) {
- $("#Notificacao").show();
- $("#Notificacao #NotDica").html(texto);
- if(icone != null) {
- $("#Notificacao #NotIcone").html("<img src='Base/Img/Icones/"+icone+".png'>");
- }
- setTimeout(function(){ $("#Notificacao").hide(); }, 9000);
- }
Recent Pastes