Skip to content

Commit a275ca1

Browse files
committed
Updates
1 parent 1b0763d commit a275ca1

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
44

5+
## [2.1.6](https://github.com/wpmudev/hustle-ui/compare/v2.1.5...v2.1.6) (2024-16-01)
6+
#### 🐛 Bug Fixes
7+
- `popup`
8+
- **fix(popup):** popup scroll not working outside of content. [#96](https://github.com/wpmudev/hustle-ui/pull/96) ([@creadordev](https://github.com/creadordev))
9+
10+
#### Committers: 1
11+
- Pawan Kumar ([@creador-dev](https://github.com/creador-dev))
12+
13+
## [2.1.5](https://github.com/wpmudev/hustle-ui/compare/v2.1.4...v2.1.5) (2023-18-10)
14+
#### 🚀 Improvements
15+
- `icon`
16+
- **new(icon):** icon updated. [#94](https://github.com/wpmudev/hustle-ui/pull/94) ([@creadordev](https://github.com/creadordev))
17+
18+
#### Committers: 1
19+
- Pawan Kumar ([@creador-dev](https://github.com/creador-dev))
20+
521
## [2.1.4](https://github.com/wpmudev/hustle-ui/compare/v2.1.3...v2.1.4) (2023-16-06)
622
#### 🐛 Bug Fixes
723
- `validation`

css/hustle-popup.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/hustle-ui.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -681,12 +681,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
681681
closePopup();
682682
});
683683
if (1 === popup.data('overlay-close')) {
684-
overlay.on('click', function (e) {
684+
popup.on('click', function (e) {
685685
popup.trigger('hustle:module:click_outside', this);
686686
closePopup();
687687
e.preventDefault();
688688
e.stopPropagation();
689689
});
690+
content.on('click', function (e) {
691+
e.stopPropagation();
692+
});
690693
}
691694
}
692695
init();

0 commit comments

Comments
 (0)