saloe 0.0.62 → 0.0.63

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.
@@ -183,7 +183,6 @@ const listener = ({
183
183
  if (srcElement == null ? void 0 : srcElement.removeAttribute) srcElement.removeAttribute(`on-${event}`);
184
184
  };
185
185
  });
186
- fireAnchorClickListener();
187
186
  const saloeListenEvent = new CustomEvent("saloeListen", {
188
187
  detail: { message: "This is a custom event!" }
189
188
  });
@@ -191,6 +190,7 @@ const listener = ({
191
190
  await addScripts();
192
191
  fireLoadListener();
193
192
  fireObserverListeners();
193
+ fireAnchorClickListener();
194
194
  });
195
195
  document.body.saloeListen = function() {
196
196
  document.body.dispatchEvent(saloeListenEvent);
@@ -181,7 +181,6 @@ const listener = ({
181
181
  if (srcElement == null ? void 0 : srcElement.removeAttribute) srcElement.removeAttribute(`on-${event}`);
182
182
  };
183
183
  });
184
- fireAnchorClickListener();
185
184
  const saloeListenEvent = new CustomEvent("saloeListen", {
186
185
  detail: { message: "This is a custom event!" }
187
186
  });
@@ -189,6 +188,7 @@ const listener = ({
189
188
  await addScripts();
190
189
  fireLoadListener();
191
190
  fireObserverListeners();
191
+ fireAnchorClickListener();
192
192
  });
193
193
  document.body.saloeListen = function() {
194
194
  document.body.dispatchEvent(saloeListenEvent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saloe",
3
- "version": "0.0.62",
3
+ "version": "0.0.63",
4
4
  "description": "Tools for making web development easy and efficient",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/listener.js CHANGED
@@ -259,8 +259,6 @@ const listener = ({
259
259
  }
260
260
  })
261
261
 
262
- fireAnchorClickListener()
263
-
264
262
  const saloeListenEvent = new CustomEvent('saloeListen', {
265
263
  detail: { message: 'This is a custom event!' }
266
264
  })
@@ -269,6 +267,7 @@ const listener = ({
269
267
  await addScripts()
270
268
  fireLoadListener()
271
269
  fireObserverListeners()
270
+ fireAnchorClickListener()
272
271
  })
273
272
 
274
273
  document.body.saloeListen = function () {