├── .editorconfig ├── .gitignore ├── .jshintrc ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Gruntfile.js ├── README-legacy.md ├── README.md ├── bower.json ├── demo ├── assets │ ├── application.css │ ├── castle.jpg │ ├── iframe_content.css │ ├── normalize.css │ └── panoramic.jpg ├── castle.html ├── form_1.html ├── form_1_confirm.html ├── index-callback.html ├── index-dynamic.html ├── index-form.html ├── index-min-height.html ├── index-with-pic.html ├── index.html ├── large.html ├── medium.html ├── pic1.html ├── small.html ├── xlarge.html ├── xsmall.html └── xxlarge.html ├── dist ├── jquery-iframe-auto-height.js └── jquery-iframe-auto-height.min.js ├── favicon.ico ├── package.json ├── release ├── 2.0.0+.js ├── README ├── jquery.browser.js ├── jquery.iframe-auto-height.js ├── jquery.iframe-auto-height.plugin.1.4.0.min.js ├── jquery.iframe-auto-height.plugin.1.4.1.min.js ├── jquery.iframe-auto-height.plugin.1.5.0.js ├── jquery.iframe-auto-height.plugin.1.5.0.min.js ├── jquery.iframe-auto-height.plugin.1.6.0.js ├── jquery.iframe-auto-height.plugin.1.6.0.min.js ├── jquery.iframe-auto-height.plugin.1.7.0.js ├── jquery.iframe-auto-height.plugin.1.7.0.min.js ├── jquery.iframe-auto-height.plugin.1.7.1.js ├── jquery.iframe-auto-height.plugin.1.7.1.min.js ├── jquery.iframe-auto-height.plugin.1.8.0.js ├── jquery.iframe-auto-height.plugin.1.8.0.min.js ├── jquery.iframe-auto-height.plugin.1.9.0.js ├── jquery.iframe-auto-height.plugin.1.9.0.min.js ├── jquery.iframe-auto-height.plugin.1.9.1.js ├── jquery.iframe-auto-height.plugin.1.9.1.min.js ├── jquery.iframe-auto-height.plugin.1.9.2.js ├── jquery.iframe-auto-height.plugin.1.9.2.min.js ├── jquery.iframe-auto-height.plugin.1.9.3.js ├── jquery.iframe-auto-height.plugin.1.9.3.min.js ├── jquery.iframe-auto-height.plugin.1.9.4.js ├── jquery.iframe-auto-height.plugin.1.9.4.min.js ├── jquery.iframe-auto-height.plugin.1.9.5.js └── jquery.iframe-auto-height.plugin.1.9.5.min.js ├── src └── jquery-iframe-auto-height.js ├── tasks ├── aliases.yaml ├── changelog.js ├── clean.js ├── concat.js ├── groc.js ├── jshint.js ├── lintspaces.js ├── uglify.js ├── umd.js └── watch.js └── vendor └── jquery.browser.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/.jshintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README-legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/README-legacy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/bower.json -------------------------------------------------------------------------------- /demo/assets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/assets/application.css -------------------------------------------------------------------------------- /demo/assets/castle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/assets/castle.jpg -------------------------------------------------------------------------------- /demo/assets/iframe_content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/assets/iframe_content.css -------------------------------------------------------------------------------- /demo/assets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/assets/normalize.css -------------------------------------------------------------------------------- /demo/assets/panoramic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/assets/panoramic.jpg -------------------------------------------------------------------------------- /demo/castle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/castle.html -------------------------------------------------------------------------------- /demo/form_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/form_1.html -------------------------------------------------------------------------------- /demo/form_1_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/form_1_confirm.html -------------------------------------------------------------------------------- /demo/index-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/index-callback.html -------------------------------------------------------------------------------- /demo/index-dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/index-dynamic.html -------------------------------------------------------------------------------- /demo/index-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/index-form.html -------------------------------------------------------------------------------- /demo/index-min-height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/index-min-height.html -------------------------------------------------------------------------------- /demo/index-with-pic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/index-with-pic.html -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/large.html -------------------------------------------------------------------------------- /demo/medium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/medium.html -------------------------------------------------------------------------------- /demo/pic1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/pic1.html -------------------------------------------------------------------------------- /demo/small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/small.html -------------------------------------------------------------------------------- /demo/xlarge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/xlarge.html -------------------------------------------------------------------------------- /demo/xsmall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/xsmall.html -------------------------------------------------------------------------------- /demo/xxlarge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/demo/xxlarge.html -------------------------------------------------------------------------------- /dist/jquery-iframe-auto-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/dist/jquery-iframe-auto-height.js -------------------------------------------------------------------------------- /dist/jquery-iframe-auto-height.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/dist/jquery-iframe-auto-height.min.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/package.json -------------------------------------------------------------------------------- /release/2.0.0+.js: -------------------------------------------------------------------------------- 1 | alert('Find 2.0.0 + in the dist directory'); 2 | -------------------------------------------------------------------------------- /release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/README -------------------------------------------------------------------------------- /release/jquery.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.browser.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.4.0.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.4.1.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.5.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.5.0.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.5.0.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.6.0.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.6.0.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.7.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.7.0.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.7.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.7.0.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.7.1.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.7.1.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.8.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.8.0.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.8.0.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.0.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.0.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.1.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.1.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.2.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.2.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.3.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.3.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.4.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.4.min.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.5.js -------------------------------------------------------------------------------- /release/jquery.iframe-auto-height.plugin.1.9.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/release/jquery.iframe-auto-height.plugin.1.9.5.min.js -------------------------------------------------------------------------------- /src/jquery-iframe-auto-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/src/jquery-iframe-auto-height.js -------------------------------------------------------------------------------- /tasks/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/aliases.yaml -------------------------------------------------------------------------------- /tasks/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/changelog.js -------------------------------------------------------------------------------- /tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/clean.js -------------------------------------------------------------------------------- /tasks/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/concat.js -------------------------------------------------------------------------------- /tasks/groc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/groc.js -------------------------------------------------------------------------------- /tasks/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/jshint.js -------------------------------------------------------------------------------- /tasks/lintspaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/lintspaces.js -------------------------------------------------------------------------------- /tasks/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/uglify.js -------------------------------------------------------------------------------- /tasks/umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/umd.js -------------------------------------------------------------------------------- /tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/tasks/watch.js -------------------------------------------------------------------------------- /vendor/jquery.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/house9/jquery-iframe-auto-height/HEAD/vendor/jquery.browser.js --------------------------------------------------------------------------------