@crowdstrike/foundry-js 0.10.0 → 0.11.0
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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2799,10 +2799,10 @@ class Navigation {
|
|
2799
2799
|
if (!('preventDefault' in event)) {
|
2800
2800
|
return;
|
2801
2801
|
}
|
2802
|
-
event.preventDefault();
|
2803
2802
|
if (!(event.target instanceof HTMLAnchorElement)) {
|
2804
|
-
|
2803
|
+
return;
|
2805
2804
|
}
|
2805
|
+
event.preventDefault();
|
2806
2806
|
const path = event.target.getAttribute('href');
|
2807
2807
|
defaultTarget =
|
2808
2808
|
event.target.getAttribute('target') ??
|