Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Adicionado popover no gráfico - Production Tag Cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Developer committed Dec 2, 2024
1 parent aaec2a4 commit 148089d
Showing 1 changed file with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@
${stylesheets.add('<link rel="stylesheet" href="${urls.base}/themes/brcris/css/tagcloud/style.css"/>')}

<#assign dataString = "[ ">

<section id="pageList">

<div id="body">
<div id="sub_headings">
<#list keywords as firstRow>
<div class="tab">
<hgroup class="title">
<h2><a href="${urlPrefix}${authorUri}" title="${firstRow["authorName"]}">${firstRow["authorName"]}</a></h2>
</div>
<h2 class="title">${i18n().prod_tag_cloud_full}</h2>
</hgroup>
<#include "popover.ftl">
<#break>
</#list>
</section>

</div>
</div>
<section id="keywordList">
<#list keywords as resultRow>
<#assign keywordData = "{\"key\": \"" + resultRow["tag"] + "\", \"value\": " + resultRow["total"] + "}, ">
Expand All @@ -26,12 +29,6 @@
<#assign dataString = dataString?keep_before_last(", ") + " ]">
</section>

<section id="cloudTitle">
<div class="title-holder">
<h2 class="title">${i18n().prod_tag_cloud_full}</h1>
</div>
</section>

<section id="cloudRendering">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
Expand Down

0 comments on commit 148089d

Please sign in to comment.