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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-13 23:30:00 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-13 23:30:46 +0400
commit9369f5a44705a79a4488b1c6fbd6834dad0631c1 (patch)
tree9c17f9668dad4eac9c3dcc53b6eaf6274708e5c1 /plugins/Live/templates/_actionsList.twig
parent0467946029a47865b461e17ed8b8f558e4d03641 (diff)
Fixes #3089, finishing touches to UI and code.
Notes: - Added new visitId segment to get rid of getSingleVisitSummary API method. - Link to widgetized visitor profile in popup. - Added export link to visitor profile for visitor profile data. - Use CSS truncation instead of twig truncation in visitor log/last visits widget.
Diffstat (limited to 'plugins/Live/templates/_actionsList.twig')
-rw-r--r--plugins/Live/templates/_actionsList.twig8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Live/templates/_actionsList.twig b/plugins/Live/templates/_actionsList.twig
index 27eee7c250..24916b1434 100644
--- a/plugins/Live/templates/_actionsList.twig
+++ b/plugins/Live/templates/_actionsList.twig
@@ -76,22 +76,22 @@
{% elseif action.goalName is not defined%}
{# Page view / Download / Outlink #}
{% if action.pageTitle is defined and action.pageTitle is not empty %}
- <span>{{ action.pageTitle|truncate(80) }}</span>
+ <span class="truncated-text-line">{{ action.pageTitle }}</span>
{% endif %}
{% if action.siteSearchKeyword is defined %}
{% if action.type == 'search' %}
<img src='{{ action.icon }}' title='{{ 'Actions_SubmenuSitesearch'|translate }}'>
{% endif %}
- {{ action.siteSearchKeyword|truncate(80) }}
+ <span class="truncated-text-line">{{ action.siteSearchKeyword }}</span>
{% endif %}
{% if action.url is not empty %}
{% if action.type == 'action' and action.pageTitle is not empty %}<p>{% endif %}
{% if action.type == 'download' or action.type == 'outlink' %}
<img src='{{ action.icon }}'>
{% endif %}
- <a href="{{ action.url }}" target="_blank" class="action-list-url"
+ <a href="{{ action.url }}" target="_blank" class="action-list-url truncated-text-line"
{% if overrideLinkStyle is not defined or overrideLinkStyle %}style="{% if action.type=='action' and action.pageTitle is not empty %}margin-left: 25px;{% endif %}text-decoration:underline;"{% endif %}>
- {{ action.url|truncate(80) }}
+ {{ action.url }}
</a>
{% if action.type == 'action' and action.pageTitle is not empty %}</p>{% endif %}
{% elseif action.type != 'search' %}