Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleigh committed Jun 9, 2021
1 parent 485a8e7 commit 8a736ab
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.9.6
- 🐛 fix(dropdown): Increase dropdown `z-index`.


v1.9.5
- 🐛 fix(radio): Improve styles for radio with image.
- 🐛 fix(checkbox): Improve styles for checkbox with image.
Expand Down
2 changes: 1 addition & 1 deletion css/forminator-forms.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/forminator-ui.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-bold.full.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-bold.select2.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-default.full.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-default.select2.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-flat.full.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-flat.select2.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-material.full.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/form/forminator-form-material.select2.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/src/forminator-ui.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions js/forminator-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
dropdownParent: $parent
}).on('select2:opening', function () {
$select.data('select2').$dropdown.find(':input.select2-search__field').attr('placeholder', $placeholder);

if ($select.closest('.hustle-popup').length || $select.closest('.hustle-slidein')) {
$(document.body).addClass('forminator-hustle-dropdown-fix');
}
}).on('select2:closing', function () {
$(document.body).removeClass('forminator-hustle-dropdown-fix');
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion js/forminator-form.min.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions js/forminator-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
dropdownParent: $parent
}).on('select2:opening', function () {
$select.data('select2').$dropdown.find(':input.select2-search__field').attr('placeholder', $placeholder);

if ($select.closest('.hustle-popup').length || $select.closest('.hustle-slidein')) {
$(document.body).addClass('forminator-hustle-dropdown-fix');
}
}).on('select2:closing', function () {
$(document.body).removeClass('forminator-hustle-dropdown-fix');
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion js/forminator-ui.min.js

Large diffs are not rendered by default.

0 comments on commit 8a736ab

Please sign in to comment.