saloe 0.0.17 → 0.0.18

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.
@@ -150,6 +150,7 @@ const listener = () => {
150
150
  };
151
151
  const fireListeners = () => {
152
152
  EVENTS_FIRE_DOCUMENT_BODY_LISTENERS.forEach((event) => {
153
+ console.log("--- event:", event);
153
154
  document.body[`on${event}`] = async (e) => {
154
155
  console.log("--- prev: addScripts");
155
156
  const x = await addScripts();
@@ -148,6 +148,7 @@ const listener = () => {
148
148
  };
149
149
  const fireListeners = () => {
150
150
  EVENTS_FIRE_DOCUMENT_BODY_LISTENERS.forEach((event) => {
151
+ console.log("--- event:", event);
151
152
  document.body[`on${event}`] = async (e) => {
152
153
  console.log("--- prev: addScripts");
153
154
  const x = await addScripts();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saloe",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "Tools for making web development easy and efficient",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/listener.js CHANGED
@@ -212,6 +212,7 @@ const listener = () => {
212
212
 
213
213
  const fireListeners = () => {
214
214
  EVENTS_FIRE_DOCUMENT_BODY_LISTENERS.forEach((event) => {
215
+ console.log('--- event:', event)
215
216
  document.body[`on${event}`] = async (e) => {
216
217
  console.log('--- prev: addScripts')
217
218
  const x = await addScripts()