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

widgetcontainer.directive.html « widget-container « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21ebd3d0cd9efd2c11cd48e183900d5b1f4152dc (plain)
1
2
3
4
5
6
7
8
9
10
<div>
    <!-- custom template prevents recursion -->
    <script id="mywidget.html" type="text/ng-template">
        <div piwik-widget="widget"></div>
    </script>

    <div ng-repeat="widget in container.widgets">
        <div ng-include src="'mywidget.html'"/>
    </div>
</div>