Commit bdde26e8ffb72622a6533868a58d81d2b9089524
1 parent
25c1f349
Exists in
master
O footer está substituindo ao invés de acrescentando o HTML
Showing
3 changed files
with
3 additions
and
2 deletions
Show diff stats
CHANGES.md
@@ -3,6 +3,7 @@ | @@ -3,6 +3,7 @@ | ||
3 | # 2.1 (unreleased) | 3 | # 2.1 (unreleased) |
4 | 4 | ||
5 | * Retirada da chamada do estatística do SERPRO para PWIKI [caduvieira] | 5 | * Retirada da chamada do estatística do SERPRO para PWIKI [caduvieira] |
6 | +* O footer está substituindo ao invés de acrescentando o HTML [caduvieira] | ||
6 | 7 | ||
7 | # 2.0 | 8 | # 2.0 |
8 | 9 |
recipes/default/assets/footer-brasil.coffee
1 | divFooter = document.getElementById("footer-brasil") | 1 | divFooter = document.getElementById("footer-brasil") |
2 | if divFooter | 2 | if divFooter |
3 | - divFooter.innerHTML += conteudoFooter | 3 | + divFooter.innerHTML = conteudoFooter |
4 | 4 | ||
5 | window._footerbrasil = | 5 | window._footerbrasil = |
6 | insere_css: (css) -> | 6 | insere_css: (css) -> |
recipes/outubrorosa/assets/footer-brasil.coffee
1 | divFooter = document.getElementById("footer-brasil") | 1 | divFooter = document.getElementById("footer-brasil") |
2 | if divFooter | 2 | if divFooter |
3 | - divFooter.innerHTML += conteudoFooter | 3 | + divFooter.innerHTML = conteudoFooter |
4 | 4 | ||
5 | window._footerbrasil = | 5 | window._footerbrasil = |
6 | insere_css: (css) -> | 6 | insere_css: (css) -> |