Jack Moore

Results 106 comments of Jack Moore

That's a good question. I haven't been in a hurry to do that because Colorbox has many legacy users.

Sorry, I do not know. Normally, if the size changes between the 1st and 2nd times that it's opened, that means that the 1st time some aspect that affected the...

My apologies for the late reply. I wasn't sure how to address this, so I'm glad you are finding a way. That sounds like a very good option. I figured...

Hey Davide, this is the repository for Colorbox, but not for the Wordpress plugin which uses Colorbox as a foundation. I can't speak for any Wordpress plugin specific issues, but...

Does the same thing happen if you set the transition to "none"? ``` $(document).ready(function() { $(".map").colorbox({width: '90%', height: '80%', iframe: 'true', maxWidth: '100%', transition: "none"}); }); ```

Here is a temporary fix that might work for you: ``` window.addEventListener("orientationchange", function() { if($('#cboxOverlay').is(':visible'){ $.colorbox.load(true); } }, false); ``` I'll should be handled a little cleaner on the plugin...

You just put it in a script block, and add it to your document. colorbox and jQuery have to be defined first. ``` window.addEventListener("orientationchange", function() { if($('#cboxOverlay').is(':visible')){ $.colorbox.load(true); } },...

This is my fault because I left out a ) in my original example code, which is now fixed, but check your javascript console next time. It would have told...

I stopped making load a publicly accessible function in a previous release because I forgot anyone was using it. Just use this previous version: https://github.com/jackmoore/colorbox/tree/1.4.4 Working on a larger update...

Hi, responded to you on twitter before I noticed this issue. I haven't tried this before, but it sounds like you are on track. I don't know why you weren't...