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:
Diffstat (limited to 'plugins/CoreHome/angularjs/content-table/content-table.directive.js')
-rw-r--r--plugins/CoreHome/angularjs/content-table/content-table.directive.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/CoreHome/angularjs/content-table/content-table.directive.js b/plugins/CoreHome/angularjs/content-table/content-table.directive.js
deleted file mode 100644
index 6fefc8838c..0000000000
--- a/plugins/CoreHome/angularjs/content-table/content-table.directive.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/*!
- * Matomo - free/libre analytics platform
- *
- * @link https://matomo.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- */
-
-/**
- * Usage:
- * <div piwik-content-table>
- */
-(function () {
- angular.module('piwikApp').directive('piwikContentTable', piwikContentTable);
-
- piwikContentTable.$inject = ['piwik'];
-
- function piwikContentTable(piwik){
-
- return {
- restrict: 'A',
- compile: function (element, attrs) {
- element.addClass('card card-table entityTable');
-
- return function (scope, element, attrs) {
-
- };
- }
- };
- }
-})();