@innovastudio/contentbox 1.5.42 → 1.5.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.5.42",
4
+ "version": "1.5.43",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "files": [
@@ -107769,7 +107769,7 @@ class ContentBox {
107769
107769
  mediaSelectHeight: this.settings.mediaSelectHeight,
107770
107770
  assetRefresh: this.settings.assetRefresh,
107771
107771
  onContentClick: e => {
107772
- if (this.settings.onContentClick) this.settings.onContentClick();
107772
+ if (this.settings.onContentClick) this.settings.onContentClick(e);
107773
107773
  this.doc.body.classList.remove('temporary-hide-tools');
107774
107774
  let elm = e.target;
107775
107775
  let editable = elm.closest('[contenteditable="true"]');