diff --git a/README.md b/README.md index 5c80d2427..90192630c 100644 --- a/README.md +++ b/README.md @@ -186,11 +186,11 @@ Listen for resize events from the parent page, or the iFrame. Select the 'child' ### scrolling default: false - type: true | false | 'omit' | 'auto' + type: boolean | 'omit' Enable scroll bars in iFrame. -* **true** or **'auto'** applies `scrolling="yes"` +* **true** applies `scrolling="yes"` * **false** applies `scrolling="no"` * **'omit'** applies no `scrolling` attribute to the iFrame @@ -547,6 +547,7 @@ The parentIFrame methods object in the iFrame is now always available and the `e ## Version History +* v3.6.3 [#635](https://github.com/davidjbradshaw/iframe-resizer/pull/635) Fix issue with undefined ID [[Henry Schein](ddxdental]. [#582](https://github.com/davidjbradshaw/iframe-resizer/pull/582) Add `omit` option to `scrolling` config [[Matt Ryan](mryand]. * v3.6.2 [#596](https://github.com/davidjbradshaw/iframe-resizer/pull/596) Add Passive Event Listener for Performance [[Henrik Vendelbo](thepian)]. [#613](https://github.com/davidjbradshaw/iframe-resizer/pull/613) Check if the iFrameResize function is attached to the prototype of jQuery [[Paul Antal](paul-antal)]. [#620](https://github.com/davidjbradshaw/iframe-resizer/pull/620) Fixed an issue where host page fires init before iframe receiver setup [[Mark Zhou](mrmarktyy)]. [#620](https://github.com/davidjbradshaw/iframe-resizer/pull/620) Add `removeListeners` method to better support React [[Khang Nguyen](khangiskhan)]. * v3.6.1 [#576](https://github.com/davidjbradshaw/iframe-resizer/pull/576) Fix race condition caused by react-iframe-resizer removing the domNode and calling `close()`. * v3.6.0 [#562](https://github.com/davidjbradshaw/iframe-resizer/pull/562) Fix issue with debounce getPageInfo when their is more than one iFrame on the page [[Thomas Pringle](thomaspringle)]. [#568](https://github.com/davidjbradshaw/iframe-resizer/pull/568) Fix bug in Chrome 65 when iframe parent element has `display:none` set [[Steve Hong](aniude)]. diff --git a/bower.json b/bower.json index 6b52f471b..a682ba2ae 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "iframe-resizer", - "version": "3.6.2", + "version": "3.6.3", "homepage": "https://github.com/davidjbradshaw/iframe-resizer", "authors": [ "David J. Bradshaw " diff --git a/js/iframeResizer.contentWindow.min.js b/js/iframeResizer.contentWindow.min.js index f479b0d26..55ea41169 100644 --- a/js/iframeResizer.contentWindow.min.js +++ b/js/iframeResizer.contentWindow.min.js @@ -1,4 +1,4 @@ -/*! iFrame Resizer (iframeSizer.contentWindow.min.js) - v3.6.2 - 2018-10-28 +/*! iFrame Resizer (iframeSizer.contentWindow.min.js) - v3.6.3 - 2018-10-28 * Desc: Include this file in any page being loaded into an iframe * to force the iframe to resize to the content size. * Requires: iframeResizer.min.js on host page. diff --git a/js/iframeResizer.min.js b/js/iframeResizer.min.js index 1f09d28f8..d9663085a 100644 --- a/js/iframeResizer.min.js +++ b/js/iframeResizer.min.js @@ -1,4 +1,4 @@ -/*! iFrame Resizer (iframeSizer.min.js ) - v3.6.2 - 2018-10-28 +/*! iFrame Resizer (iframeSizer.min.js ) - v3.6.3 - 2018-10-28 * Desc: Force cross domain iframes to size to content. * Requires: iframeResizer.contentWindow.min.js to be loaded into the target frame. * Copyright: (c) 2018 David J. Bradshaw - dave@bradshaw.net diff --git a/package.json b/package.json index 187b132f3..c30a5bb8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iframe-resizer", - "version": "3.6.2", + "version": "3.6.3", "homepage": "https://github.com/davidjbradshaw/iframe-resizer", "authors": [ "David J. Bradshaw "