Commit 7df85f6d9e9b41683003f91965ed0dfb88f33ea7
1 parent
ac5411ff
Exists in
master
and in
7 other branches
Inclusão de variável de configuração para controle do tempo de espera do botão aplicar
Showing
1 changed file
with
11 additions
and
3 deletions
Show diff stats
aplicmap/geral.htm
... | ... | @@ -159,7 +159,7 @@ vc pode optar por colocar mensagens de ajuda em algum lugar |
159 | 159 | </table> |
160 | 160 | <div style='display:inline;background-color:rgb(250,250,250);'> |
161 | 161 | <p style='font-size:6px;'> </p> |
162 | - <img title="reinicia" alt="" src="../imagens/branco.gif" id='imprimir'/> | |
162 | + <img title="imprimir" alt="" src="../imagens/branco.gif" id='imprimir'/> | |
163 | 163 | </div> |
164 | 164 | |
165 | 165 | <div style='display:inline;background-color:rgb(250,250,250);'> |
... | ... | @@ -422,7 +422,7 @@ g_templateLegenda = ""; |
422 | 422 | |
423 | 423 | Pode ser "block" ou "none". |
424 | 424 | */ |
425 | -g_mapaRefDisplay = "block" | |
425 | +g_mapaRefDisplay = "block"; | |
426 | 426 | |
427 | 427 | /* |
428 | 428 | Variable: g_docaguias |
... | ... | @@ -583,11 +583,19 @@ Após decorrido o tempo definido, o mapa é redesenhado. Se for 0 o temporizador n |
583 | 583 | g_autoRedesenho = 0; |
584 | 584 | |
585 | 585 | /* |
586 | +Variable: g_tempo_aplicar | |
587 | + | |
588 | +Tempo que o botão 'aplicar' fica aguardando o usuário antes de redesenhar o mapa automaticamente. | |
589 | + | |
590 | +*/ | |
591 | +g_tempo_aplicar = 4000; | |
592 | + | |
593 | +/* | |
586 | 594 | Variable: objmapa.guiaTemas |
587 | 595 | |
588 | 596 | Define qual div corresponde ao local de listagem das camadas disponíveis no mapa |
589 | 597 | */ |
590 | -objmapa.guiaTemas = "guia1" | |
598 | +objmapa.guiaTemas = "guia1"; | |
591 | 599 | |
592 | 600 | /* |
593 | 601 | Variable: objmapa.guiaMenu | ... | ... |