-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clear the content of an iframe when the modalbox was closed (fixes #1…
…988)
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cac474c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iframe内のdocumentオブジェクトの取得方法はブラウザによって異なるため要修正
Firefox → this.modalIframe.contentDocument または this.modalIframe.contentWindow.document
WebKit → this.modalIframe.contentDocument
IE → this.modalIframe.contentWindow.document
cac474c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
上記は @b33909b にて対応しました