@innovastudio/contentbuilder 1.3.59 → 1.3.60

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/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.3.59",
4
+ "version": "1.3.60",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -77258,8 +77258,10 @@ class ContentBuilder {
77258
77258
  } // Enable resizable on click
77259
77259
 
77260
77260
 
77261
- this.resize = new Resize(col, this);
77262
- this.resize.enable();
77261
+ if (!col.classList.contains('noresize')) {
77262
+ this.resize = new Resize(col, this);
77263
+ this.resize.enable();
77264
+ }
77263
77265
  }
77264
77266
  }
77265
77267