Skip to content

Commit

Permalink
Release v3.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjbradshaw committed Mar 29, 2017
1 parent 7c6e759 commit 534ca5f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ The parentIFrame methods object in the iFrame is now always available and the `e

## Version History

* v3.5.12 [#475](https://github.com/davidjbradshaw/iframe-resizer/issues/475) Delay resizeCallback until after the iFrame has resized [[Codener]](codener).
* v3.5.11 [#470](https://github.com/davidjbradshaw/iframe-resizer/issues/470) Fix jQuery reference error [[Russell Schick]](rschick).
* v3.5.10 [#461](https://github.com/davidjbradshaw/iframe-resizer/issues/461) Don't run for server-side render
* v3.5.9 Show warning message if no response from iFrame. [#463](https://github.com/davidjbradshaw/iframe-resizer/issues/463) Suppress warning message when code loaded via module [[Sergey Pereskokov](SerjoPepper)]. [#461](https://github.com/davidjbradshaw/iframe-resizer/issues/461).
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iframe-resizer",
"version": "3.5.11",
"version": "3.5.12",
"homepage": "https://github.com/davidjbradshaw/iframe-resizer",
"authors": [
"David J. Bradshaw <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion js/iframeResizer.contentWindow.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions js/iframeResizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
function resize(){
setSize(messageData);
setPagePosition(iframeId);
callback('resizedCallback',messageData);
}

ensureInRange('Height');
Expand Down Expand Up @@ -460,11 +461,9 @@
case 'init':
resizeIFrame();
callback('initCallback',messageData.iframe);
callback('resizedCallback',messageData);
break;
default:
resizeIFrame();
callback('resizedCallback',messageData);
}
}

Expand Down
2 changes: 1 addition & 1 deletion js/iframeResizer.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/iframeResizer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iframe-resizer",
"version": "3.5.11",
"version": "3.5.12",
"homepage": "https://github.com/davidjbradshaw/iframe-resizer",
"authors": [
"David J. Bradshaw <[email protected]>"
Expand Down

0 comments on commit 534ca5f

Please sign in to comment.