Skip to content

Commit

Permalink
πŸ› Fix he-context elements always having scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
skerit committed Oct 5, 2023
1 parent a2b95e9 commit 5cbcd0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.3.14 (WIP)

* Fix `he-context` elements always having scrollbars

## 2.3.13 (2023-10-04)

* Fix elements being added to another element directly not being marked as dirty on the browser side, and thus not running the `onHawkejsAssemble` and `retained` method
Expand Down
4 changes: 2 additions & 2 deletions lib/element/he_context_menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ContextMenu = Fn.inherits('Hawkejs.Element', 'HeContextMenu');
*
* @author Jelle De Loecker <jelle@elevenways.be>
* @since 2.2.6
* @version 2.2.17
* @version 2.3.14
*/
ContextMenu.setStylesheet(`
he-context-menu:before {
Expand Down Expand Up @@ -42,7 +42,7 @@ he-context-menu {
border-radius: 3px;
z-index: 999999;
max-height: 80vh;
overflow: scroll;
overflow: auto;
}
he-context-menu .hcm-item {
padding: 5px 16px 5px 8px;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hawkejs",
"description": "Asynchronous Embedded JavaScript templates",
"version": "2.3.13",
"version": "2.3.14-alpha",
"author": "Jelle De Loecker <jelle@elevenways.be>",
"keywords": [
"template",
Expand Down

0 comments on commit 5cbcd0e

Please sign in to comment.