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

setTimeout errors in firefox #10

Open
drasgardian opened this issue Nov 2, 2012 · 2 comments
Open

setTimeout errors in firefox #10

drasgardian opened this issue Nov 2, 2012 · 2 comments

Comments

@drasgardian
Copy link

I got some console errors in firefox when using maximage along with jquery cycle. And maximage would only apply to the first element of the cycle.

Error Message:

useless setTimeout call (missing quotes around argument?)

I fixed it with this change on line 622:

  •                                                   to = setTimeout( Adjust[settings]($self), 200 );
    
  •                                                   to = setTimeout(function(){Adjust[settings]($self);}, 200 );
    
@ivandotv
Copy link

In the customized example, the errors gets thrown only on the youtube slide.

@nicmare
Copy link

nicmare commented Mar 26, 2013

same error here: http://www.aaronvanderzwan.com/maximage/examples/html5video.html
fixed it with

to = setTimeout(function(){Adjust[settings]($self);}, 200);

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

3 participants