Commit cb29485318d3eb8d5e381176bd290a777b4209b3

Authored by Edmar Moretti
1 parent bf68583b

Inclusão da lista completa no aplicativo OGC

Showing 3 changed files with 6 additions and 3 deletions   Show diff stats
init/index.php
... ... @@ -88,7 +88,7 @@ include "head.php";
88 88 </nav>
89 89 <nav class="navbar-fixed-bottom">
90 90 <div class="container-fluid hidden">
91   - <div class="jumbotron" id="jumbotron">
  91 + <div class="jumbotron" id="jumbotron" style="background: rgb(255, 255, 255); background: rgba(255, 255, 255, 0.8); ">
92 92 <!-- Template para mensagem do i3Geo -->
93 93 <ul class="list-inline">
94 94 <li><img class="pull-left" src='../imagens/i3Geo_bigTransp.png'
... ...
ogc/index.js
... ... @@ -100,7 +100,6 @@ function listaMetaestat (onde,templateCamadas){
100 100 "codigo_tema": t.id_medida_variavel
101 101 });
102 102 }
103   -
104 103 html = Mustache.to_html(
105 104 onde.html(),
106 105 {
... ... @@ -291,7 +290,7 @@ function listaCompleta(onde){
291 290 }
292 291 html = ckCamada(camadas,$("#templateCamadas").html(),"tema");
293 292 }
294   - onde.html(html);
  293 + onde.html(html + $("#corpoMetaestat").html());
295 294 };
296 295 //cpJSON vem de class_php.js
297 296 cpJSON.call("../classesphp/mapa_controle.php?map_file=&funcao=pegaTodosTemas&g_sid=&idioma=pt", "foo", r);
... ...
ogc/index.php
... ... @@ -33,6 +33,9 @@ include &quot;../init/head.php&quot;;
33 33 -o-transform: rotate(90deg);
34 34 transform: rotate(90deg);
35 35 }
  36 +.list-group-separator{
  37 + width: 100%;
  38 +}
36 39 </style>
37 40 <script id="templateLinksOgc" type="x-tmpl-mustache">
38 41 <h3>OGC</h3>
... ... @@ -165,6 +168,7 @@ include &quot;../init/head.php&quot;;
165 168 </div>
166 169  
167 170 <div class="container">
  171 + <!-- lista completa -->
168 172 <div class="row center-block hidden" id="listaCompleta">
169 173 <div class="col-sm-12">
170 174 <div class="panel panel-default">
... ...