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/LanguagesManager/angularjs/translationsearch/translationsearch.directive.js')
-rw-r--r--plugins/LanguagesManager/angularjs/translationsearch/translationsearch.directive.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/plugins/LanguagesManager/angularjs/translationsearch/translationsearch.directive.js b/plugins/LanguagesManager/angularjs/translationsearch/translationsearch.directive.js
deleted file mode 100644
index 96d9a247ce..0000000000
--- a/plugins/LanguagesManager/angularjs/translationsearch/translationsearch.directive.js
+++ /dev/null
@@ -1,31 +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-translation-search></div>
- *
- * Will show a text box which allows the user to search for translation keys and actual translations. Currently,
- * only english is supported.
- */
-(function () {
- angular.module('piwikApp').directive('piwikTranslationSearch', piwikTranslationSearch);
-
- piwikTranslationSearch.$inject = ['piwik'];
-
- function piwikTranslationSearch(piwik){
-
- return {
- restrict: 'A',
- scope: {},
- templateUrl: 'plugins/LanguagesManager/angularjs/translationsearch/translationsearch.directive.html?cb=' + piwik.cacheBuster,
- controller: 'TranslationSearchController',
- controllerAs: 'translationSearch'
- };
- }
-})(); \ No newline at end of file