Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-05-20 12:49:42 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-05-20 12:49:42 +0400
commitccefb9528e223c59f575874017772bee638ecfeb (patch)
tree1fc438c3f9acbe69e4dbcf8c86d314344ce69e32 /plugins/CoreHome
parent21419dd54adb4b57d16f5a12d2f292b359f59b2c (diff)
Fixes #306
- Adds new columns to the existing Pages report: Bounce rate, Average time on page, Exit rate - Adds new report: Entry pages - Adds new report: Exit pages - Adding table column inline help (on hover). Note: I don't think my metrics definitions are the best, they can be improved. anyone? I tried to add this icon: http://cdn.iconfinder.net/data/icons/uidesignicons/information.png but couldn't manage to make it look pretty (icon was either not positionned properly, or when it was positionned properly, it would appear in the dashboard even for columns that are hidden - the icon appeared out of nowhere..)
Diffstat (limited to 'plugins/CoreHome')
-rw-r--r--plugins/CoreHome/templates/datatable.css1
-rw-r--r--plugins/CoreHome/templates/datatable_actions.tpl2
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/CoreHome/templates/datatable.css b/plugins/CoreHome/templates/datatable.css
index 71edc9cd15..fabf7d5a85 100644
--- a/plugins/CoreHome/templates/datatable.css
+++ b/plugins/CoreHome/templates/datatable.css
@@ -52,6 +52,7 @@ table.dataTable td.label,
table.subDataTable td.label,
table.dataTableActions td.label {
width: 100%;
+ white-space:nowrap;
}
table.dataTable img,
diff --git a/plugins/CoreHome/templates/datatable_actions.tpl b/plugins/CoreHome/templates/datatable_actions.tpl
index 506e03a959..44c8a16911 100644
--- a/plugins/CoreHome/templates/datatable_actions.tpl
+++ b/plugins/CoreHome/templates/datatable_actions.tpl
@@ -10,7 +10,7 @@
<thead>
<tr>
{foreach from=$dataTableColumns item=column name=head}
- <th class="sortable {if $smarty.foreach.head.first}first{elseif $smarty.foreach.head.last}last{/if}" id="{$column}"><div id="thDIV">{$columnTranslations[$column]}</div></td>
+ <th class="sortable {if $smarty.foreach.head.first}first{elseif $smarty.foreach.head.last}last{/if}" id="{$column}"><div id="thDIV">{if !empty($columnDescriptions[$column])}<label title='{$columnDescriptions[$column]|escape:'html'}'>{/if}{$columnTranslations[$column]|escape:'html'}{if !empty($columnDescriptions[$column])}</label>{/if}</div></td>
{/foreach}
</tr>
</thead>