Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
emgk committed Jan 16, 2024
1 parent 1b0763d commit a275ca1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## [2.1.6](https://github.com/wpmudev/hustle-ui/compare/v2.1.5...v2.1.6) (2024-16-01)
#### 🐛 Bug Fixes
- `popup`
- **fix(popup):** popup scroll not working outside of content. [#96](https://github.com/wpmudev/hustle-ui/pull/96) ([@creadordev](https://github.com/creadordev))

#### Committers: 1
- Pawan Kumar ([@creador-dev](https://github.com/creador-dev))

## [2.1.5](https://github.com/wpmudev/hustle-ui/compare/v2.1.4...v2.1.5) (2023-18-10)
#### 🚀 Improvements
- `icon`
- **new(icon):** icon updated. [#94](https://github.com/wpmudev/hustle-ui/pull/94) ([@creadordev](https://github.com/creadordev))

#### Committers: 1
- Pawan Kumar ([@creador-dev](https://github.com/creador-dev))

## [2.1.4](https://github.com/wpmudev/hustle-ui/compare/v2.1.3...v2.1.4) (2023-16-06)
#### 🐛 Bug Fixes
- `validation`
Expand Down
2 changes: 1 addition & 1 deletion css/hustle-popup.min.css

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion js/hustle-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -681,12 +681,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
closePopup();
});
if (1 === popup.data('overlay-close')) {
overlay.on('click', function (e) {
popup.on('click', function (e) {
popup.trigger('hustle:module:click_outside', this);
closePopup();
e.preventDefault();
e.stopPropagation();
});
content.on('click', function (e) {
e.stopPropagation();
});
}
}
init();
Expand Down
Loading

0 comments on commit a275ca1

Please sign in to comment.