@next-core/brick-kit 2.75.0 → 2.75.1
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/CHANGELOG.md +11 -0
- package/dist/index.bundle.js +2 -2
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -5052,8 +5052,8 @@ function builtinWindowListenerFactory(args, ifContainer, context) {
|
|
|
5052
5052
|
return;
|
|
5053
5053
|
}
|
|
5054
5054
|
|
|
5055
|
-
var [url, target] = argsFactory(args, context, event);
|
|
5056
|
-
window.open(url, target || "_self");
|
|
5055
|
+
var [url, target, features] = argsFactory(args, context, event);
|
|
5056
|
+
window.open(url, target || "_self", features);
|
|
5057
5057
|
};
|
|
5058
5058
|
}
|
|
5059
5059
|
|