@saltcorn/builder 0.9.1-beta.5 → 0.9.1-beta.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@saltcorn/builder",
3
- "version": "0.9.1-beta.5",
3
+ "version": "0.9.1-beta.6",
4
4
  "description": "Drag and drop view builder for Saltcorn, open-source no-code platform",
5
5
  "main": "index.js",
6
6
  "homepage": "https://saltcorn.com",
@@ -431,6 +431,7 @@ const fetchPreview = ({ url, body, options, setPreviews, node_id, isView }) => {
431
431
  })
432
432
  .then(function (html) {
433
433
  $(".preview-scratchpad").html(html);
434
+ $(".preview-scratchpad").find("iframe").css("pointer-events", "none");
434
435
  $(".preview-scratchpad").find("a").attr("href", "#");
435
436
  $(".preview-scratchpad")
436
437
  .find("[onclick], button, a, input, select")