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/CorePluginsAdmin/angularjs/form-field/field-expandable-select.html')
-rw-r--r--plugins/CorePluginsAdmin/angularjs/form-field/field-expandable-select.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/plugins/CorePluginsAdmin/angularjs/form-field/field-expandable-select.html b/plugins/CorePluginsAdmin/angularjs/form-field/field-expandable-select.html
deleted file mode 100644
index d9f07888a5..0000000000
--- a/plugins/CorePluginsAdmin/angularjs/form-field/field-expandable-select.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<div class="expandableSelector" piwik-focus-anywhere-but-here="formField.showSelect = false">
- <div ng-click="formField.showSelect = !formField.showSelect" class="select-wrapper">
- <svg class="caret" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg>
- <input type="text" class="select-dropdown"
- readonly="true" value="{{ formField.title }}">
- </div>
-
- <div ng-show="formField.showSelect" class="expandableList z-depth-2">
-
- <div class="searchContainer">
- <input type="text" placeholder="Search"
- ng-model="formField.searchTerm" class="expandableSearch browser-default"
- piwik-focus-if="formField.showSelect">
- </div>
- <ul class="collection firstLevel">
- <li ng-repeat="options in formField.availableOptions" class="collection-item" ng-show="options.values|filter:formField.searchTerm|length">
- <h4 class="expandableListCategory" ng-click="formField.showCategory == options.group ? formField.showCategory = '' : formField.showCategory = options.group">{{ options.group }} <span class="secondary-content" ng-class='{"icon-arrow-right": formField.showCategory != options.group, "icon-arrow-bottom": formField.showCategory == options.group}'></span></h4>
-
- <ul ng-show="formField.showCategory == options.group || formField.searchTerm" class="collection secondLevel">
- <li class="expandableListItem collection-item valign-wrapper" ng-repeat="children in options.values|filter:formField.searchTerm" ng-click="formField.value = children.key;formField.showSelect = false;"><span class="primary-content">{{ children.value }}</span> <span ng-show="children.tooltip" title="{{ children.tooltip }}" class="secondary-content icon-help"></span></li>
- </ul>
- </li>
- </ul>
- </div>
-</div> \ No newline at end of file