@vonaffenfels/slate-editor 1.2.12 → 1.2.13

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": "@vonaffenfels/slate-editor",
3
- "version": "1.2.12",
3
+ "version": "1.2.13",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -72,7 +72,7 @@
72
72
  "cssnano": "^5.0.1",
73
73
  "escape-html": "^1.0.3"
74
74
  },
75
- "gitHead": "56a8de39a476572111d31320f3034d254be91885",
75
+ "gitHead": "8c1592b503c1df6efc4d84716d738d81207c3b9c",
76
76
  "publishConfig": {
77
77
  "access": "public"
78
78
  }
@@ -14,7 +14,6 @@ export const addAdsToValue = (value, adDefinitionDesktop = [], adDefinitionMobil
14
14
  for (let i = 0; i < value.length; i++) {
15
15
  const element = value[i];
16
16
  const nextElement = value[i + 1] || null;
17
- console.log("DEBUG ELEMENTS", element);
18
17
  const textLength = getElementTextLength(element);
19
18
  const isPlaceable = isAdPlaceable(element, counters);
20
19