iframe-resizer 4.3.5 → 4.3.6

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Version History
2
2
 
3
+ - v4.3.6 Fix backwards compatablity of `module.exports`
4
+
5
+ - v4.3.5 Fix path on `module.exports`
6
+
3
7
  - v4.3.4 [#990](https://github.com/davidjbradshaw/iframe-resizer/pull/990) Fix readDataFromParent mouseEvents Boolean to strBool [[Tony Living](https://github.com/tonyliving)]
4
8
 
5
9
  - v4.3.3 [#1100](https://github.com/davidjbradshaw/iframe-resizer/issues/1100) Fix jQuery check [[Gabriel Grant](https://github.com/gabrielgrant)]
package/index.js CHANGED
@@ -1,4 +1,7 @@
1
+ const iframeResize = require('./js/iframeResizer')
2
+
1
3
  module.exports = {
2
- iframeResize: require('./js/iframeResizer'),
4
+ iframeResize: iframeResize,
5
+ iframeResizer: iframeResize, // Backwards compatibility
3
6
  contentWindow: require('./js/iframeResizer.contentWindow')
4
7
  }
@@ -1,4 +1,4 @@
1
- /*! iFrame Resizer (iframeSizer.contentWindow.min.js) - v4.3.5 - 2023-03-01
1
+ /*! iFrame Resizer (iframeSizer.contentWindow.min.js) - v4.3.5 - 2023-03-08
2
2
  * Desc: Include this file in any page being loaded into an iframe
3
3
  * to force the iframe to resize to the content size.
4
4
  * Requires: iframeResizer.min.js on host page.
@@ -1,4 +1,4 @@
1
- /*! iFrame Resizer (iframeSizer.min.js ) - v4.3.5 - 2023-03-01
1
+ /*! iFrame Resizer (iframeSizer.min.js ) - v4.3.5 - 2023-03-08
2
2
  * Desc: Force cross domain iframes to size to content.
3
3
  * Requires: iframeResizer.contentWindow.min.js to be loaded into the target frame.
4
4
  * Copyright: (c) 2023 David J. Bradshaw - dave@bradshaw.net
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iframe-resizer",
3
- "version": "4.3.5",
3
+ "version": "4.3.6",
4
4
  "homepage": "https://github.com/davidjbradshaw/iframe-resizer",
5
5
  "authors": [
6
6
  "David J. Bradshaw <dave@bradshaw.net>"