Skip to content

Commit

Permalink
Release v2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjbradshaw committed Oct 11, 2014
1 parent a6effb4 commit 2dd889e
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ In lieu of a formal style-guide, take care to maintain the existing coding style

##Version History

* v2.6.2 [#104](https://github.com/davidjbradshaw/iframe-resizer/issues/104) Fixed issue with jQuery.noConflict[[Dmitry Mukhutdinov](https://github.com/flyingleafe)].
* v2.6.1 [#91](https://github.com/davidjbradshaw/iframe-resizer/issues/91) Fixed issue with jQuery requiring empty object if no options are being set.
* v2.6.0 Added *parentIFrame.scollTo()* method. Added *Tolerance* option. [#85](https://github.com/davidjbradshaw/iframe-resizer/issues/85) Update troubleshooting guide [[Kevin Sproles](https://github.com/kevinsproles)].
* v2.5.2 [#67](https://github.com/davidjbradshaw/iframe-resizer/issues/67) Allow lowercase `<iframe>` tags for XHTML complience [[SlimerDude](https://github.com/SlimerDude)]. [#69](https://github.com/davidjbradshaw/iframe-resizer/issues/69) Fix watch task typo in gruntfile.js [[Matthew Hupman](https://github.com/mhupman)]. Remove trailing comma in heightCalcMethods array [#76](https://github.com/davidjbradshaw/iframe-resizer/issues/76) [[Fabio Scala](https://github.com/fabioscala)].
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": "2.6.1",
"version": "2.6.2",
"homepage": "https://github.com/davidjbradshaw/iframe-resizer",
"authors": [
"David J. Bradshaw <dave@bradshaw.net>"
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iframe-resizer",
"version": "2.6.1",
"version": "2.6.2",
"repo": "davidjbradshaw/iframe-resizer",
"description": "Responsively keep same and cross domain iFrames sized to their content with support for window/content resizing, and multiple iFrames.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion iframeResizer.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"RWD",
"responsive"
],
"version": "2.6.1",
"version": "2.6.2",
"author": {
"name": "David J. Bradshaw",
"email": "davidjbradshaw+github@gmail.com"
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.

2 changes: 1 addition & 1 deletion js/iframeResizer.min.js

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

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": "2.6.1",
"version": "2.6.2",
"homepage": "https://github.com/davidjbradshaw/iframe-resizer",
"authors": [
"David J. Bradshaw <dave@bradshaw.net>"
Expand Down
4 changes: 2 additions & 2 deletions src/iframeResizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author: David J. Bradshaw - dave@bradshaw.net
* Contributor: Jure Mav - jure.mav@gmail.com
*/
;( function() {
;(function() {
'use strict';

var
Expand Down Expand Up @@ -431,7 +431,7 @@
setupRequestAnimationFrame();
addEventListener(window,'message',iFrameListener);

if (window.jQuery) { createJQueryPublicMethod(jQuery); }
if (window.jQuery) { createJQueryPublicMethod(jQuery); }

if (typeof define === 'function' && define.amd) {
define(function (){ return createNativePublicFunction(); });
Expand Down
2 changes: 1 addition & 1 deletion src/iframeResizer.map

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

0 comments on commit 2dd889e

Please sign in to comment.