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/form-field.directive.js')
-rw-r--r--plugins/CorePluginsAdmin/angularjs/form-field/form-field.directive.js17
1 files changed, 2 insertions, 15 deletions
diff --git a/plugins/CorePluginsAdmin/angularjs/form-field/form-field.directive.js b/plugins/CorePluginsAdmin/angularjs/form-field/form-field.directive.js
index 3f322e0da3..81a7da1918 100644
--- a/plugins/CorePluginsAdmin/angularjs/form-field/form-field.directive.js
+++ b/plugins/CorePluginsAdmin/angularjs/form-field/form-field.directive.js
@@ -17,21 +17,8 @@
function piwikFormField(piwik, $timeout){
function initMaterialSelect($select, placeholder, uiControlOptions) {
- $select.material_select(uiControlOptions || {});
-
- // to prevent overlapping selects, when a select is opened, we set the z-index to a high value on focus & remove z-index for all others
- // NOTE: we can't remove it directly blur since the blur causes the select to overlap, aborting the select click. (a timeout is used
- // to make sure the z-index is removed however, in case a non-select dropdown is displayed over it)
- $select.closest('.select-wrapper').find('input.select-dropdown')
- .focus(function () {
- $('.select-wrapper').css('z-index', '');
- $(this).closest('.select-wrapper').css('z-index', 999);
- }).blur(function () {
- var self = this;
- setTimeout(function () {
- $(self).closest('.select-wrapper').css('z-index', '');
- }, 250);
- });
+ uiControlOptions = uiControlOptions || {};
+ $select.material_select(uiControlOptions);
// add placeholder to input
if (placeholder) {