Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iFame problem #16

Closed
theprimstore opened this issue Aug 14, 2015 · 2 comments
Closed

iFame problem #16

theprimstore opened this issue Aug 14, 2015 · 2 comments

Comments

@theprimstore
Copy link

Hi

i try click on demo iframe have problem loading not hide

@theprimstore
Copy link
Author

Fix it on line 417

function iframeReady() {
    $(this)
        .parent()
        .find('div' + tmpModalContent)
        .fadeOut(function () {
            $(this).remove();
        });

    return execute();
}

replace with

function iframeReady() {
    $(this)
        .parent()
        .find('div.modal-body')
        .fadeOut(function () {
            $(this).remove();
        });

    return execute();
}

@saribe
Copy link
Owner

saribe commented Aug 15, 2015

Replaced by:

function iframeReady() {
$(this)
.parent()
.find('div.' + tmpModalContent)
.fadeOut(function () {
$(this).remove();
});

return execute();

}

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants