Commit c06231219ae3a9c2bc1e9daa48a6e9b778a8cf84
1 parent
925b0c70
Exists in
master
and in
7 other branches
Correção nos formulários de edição de links no sistema de admnistração
Showing
2 changed files
with
5 additions
and
5 deletions
Show diff stats
admin/html/mapas.html
| ... | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | <html> |
| 3 | 3 | <head> |
| 4 | 4 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> |
| 5 | - <title>Mapas</title> | |
| 5 | + <title>Links</title> | |
| 6 | 6 | <style type="text/css"> |
| 7 | 7 | /*margin and padding on body element |
| 8 | 8 | can introduce errors in determining |
| ... | ... | @@ -20,7 +20,7 @@ |
| 20 | 20 | <body class=" yui-skin-sam"> |
| 21 | 21 | <div style="margin:20px"> |
| 22 | 22 | <div style=width:80%;text-align:center;> |
| 23 | -<h1>Administração do i3geo - mapas <img src="../imagens/04.png" style="cursor:pointer" id=botaoAjuda /></h1> | |
| 23 | +<h1>Administração do i3geo - Links <img src="../imagens/04.png" style="cursor:pointer" id=botaoAjuda /></h1> | |
| 24 | 24 | |
| 25 | 25 | </div> |
| 26 | 26 | <div id="ajuda"> |
| ... | ... | @@ -33,9 +33,9 @@ |
| 33 | 33 | </div> |
| 34 | 34 | <div class="ft"></div> |
| 35 | 35 | </div> |
| 36 | -<input onclick="adicionaLinha()" type=button id=adiciona value="Adicionar um novo mapa" /> | |
| 36 | +<input onclick="adicionaLinha()" type=button id=adiciona value="Adicionar um novo link" /> | |
| 37 | 37 | <br> |
| 38 | -<p>Mapas existentes:</p> | |
| 38 | +<p>Links existentes:</p> | |
| 39 | 39 | <div id="tabela" style="left:-5px;"></div> |
| 40 | 40 | </div> |
| 41 | 41 | <div id=logajax style="display:block" ></div> | ... | ... |
admin/js/core.js
| ... | ... | @@ -447,7 +447,7 @@ function core_comboMapfiles(onde,id,marcar,funcao) |
| 447 | 447 | if (funcao != "") |
| 448 | 448 | {var funcao = "onchange='"+funcao+"'";} |
| 449 | 449 | ins = "<select id='"+id+"' "+funcao+" >" |
| 450 | - ins += core_comboObjeto($mapfiles,"","",marcar) | |
| 450 | + ins += core_comboObjeto($mapfiles,"codigo","codigo",marcar) | |
| 451 | 451 | ins += "</select></p>" |
| 452 | 452 | $i(onde).innerHTML = ins; |
| 453 | 453 | } | ... | ... |