Skip to content

Commit 04a352e

Browse files
author
Rafael J. Staib
committed
Add an fix for an iframe border and scrolling issue relating to older browsers (IE8 and lower)
1 parent 4942b8e commit 04a352e

8 files changed

+12
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.1
4+
5+
- Fixed an iframe border and scrolling issue for older browsers (IE8 and lower)
6+
37
## 1.0.0
48

59
- Nested tags which have the same node name as the body tag cause an exception. Closes issue [#4](https://github.com/rstaib/jquery-steps/issues/4)

build/jquery.steps-1.0.0.zip

-12.5 KB
Binary file not shown.

build/jquery.steps-1.0.1.zip

12.5 KB
Binary file not shown.

build/jquery.steps.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Steps v1.0.0 - 08/19/2013
2+
* jQuery Steps v1.0.1 - 08/23/2013
33
* Copyright (c) 2013 Rafael Staib (http://www.jquery-steps.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/
@@ -376,7 +376,7 @@ function loadAsyncContent(wizard, options, state)
376376
{
377377
case contentMode.iframe:
378378
wizard.find(".content > .body").eq(state.currentIndex).empty()
379-
.html("<iframe src=\"" + currentStep.contentUrl + "\" />")
379+
.html("<iframe src=\"" + currentStep.contentUrl + "\" frameborder=\"0\" scrolling=\"no\" />")
380380
.data("loaded", "1");
381381
break;
382382

build/jquery.steps.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-steps",
33
"title": "jQuery Steps",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"description": "A powerful jQuery wizard plugin that supports accessibility and HTML5",
66
"homepage": "http://www.jquery-steps.com",
77
"author": {

src/privates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ function loadAsyncContent(wizard, options, state)
564564
{
565565
case contentMode.iframe:
566566
wizard.find(".content > .body").eq(state.currentIndex).empty()
567-
.html("<iframe src=\"" + currentStep.contentUrl + "\" />")
567+
.html("<iframe src=\"" + currentStep.contentUrl + "\" frameborder=\"0\" scrolling=\"no\" />")
568568
.data("loaded", "1");
569569
break;
570570

steps.jquery.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"tabs",
1515
"steps"
1616
],
17-
"version": "1.0.0",
17+
"version": "1.0.1",
1818
"author": {
1919
"name": "Rafael Staib",
2020
"email": "me@rafaelstaib.com",
@@ -27,7 +27,7 @@
2727
"homepage": "http://www.jquery-steps.com",
2828
"docs": "https://github.com/rstaib/jquery-steps/wiki",
2929
"download": "http://www.jquery-steps.com",
30-
"demo": "http://www.rafaelstaib.com/jquery-steps/basic.html",
30+
"demo": "http://www.jquery-steps.com/Examples",
3131
"dependencies": {
3232
"jquery": ">=1.4.4"
3333
}

0 commit comments

Comments
 (0)