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

enrichedheadline.directive.html « enrichedheadline « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 236f6e6d37714040b3c6045a4db5883e27955eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<div class="enrichedHeadline"
    ng-mouseenter="view.showIcons=true" ng-mouseleave="view.showIcons=false">
    <div ng-show="!editUrl" class="title" ng-transclude tabindex="6"></div>
    <a ng-show="editUrl" class="title" href="{{ editUrl }}"
       title="{{ 'CoreHome_ClickToEditX'|translate:featureName }}"
       ng-transclude ></a>

    <span ng-show="view.showIcons || view.showInlineHelp" class="iconsBar">
        <a ng-if="helpUrl && !inlineHelp"
           rel="noreferrer noopener"
           target="_blank"
           href="{{ helpUrl }}"
           title="{{ 'CoreHome_ExternalHelp'|translate }}"
           class="helpIcon"><span class="icon-help"></span></a>

        <a ng-if="inlineHelp"
           title="{{ 'General_Help'|translate }}"
           ng-click="view.showInlineHelp=!view.showInlineHelp"
           class="helpIcon" ng-class="{ 'active': view.showInlineHelp }"><span class="icon-help"></span></a>

        <div class="ratingIcons"
             piwik-rate-feature
             title="{{ featureName }}"></div>
    </span>

    <div class="inlineHelp" ng-show="view.showInlineHelp">
        <div ng-bind-html="inlineHelp"></div>
        <a ng-if="helpUrl"
           rel="noreferrer noopener"
           target="_blank"
           href="{{ helpUrl }}"
           class="readMore">{{ 'General_MoreDetails'|translate }}</a>
    </div>
</div>