It says beta testing... I'm interested!... Go ahead, I'll be a guinea pig!... :cool:
Printable View
It says beta testing... I'm interested!... Go ahead, I'll be a guinea pig!... :cool:
I don't mind to post it to the community, I just don't have any time to support it, and feed weird offering something with no support.
Thoughts?
No worries dude.. I wouldn't submit it unless I thought it was stable.. (trust me.. it is.. :smile:) Besides.. it's the Zen Cart community.. you KNOW that eventually someone picks up the reigns for the good add-ons.. :smile: I was just gonna make the recently posted changes to it and submit it..
I'll upload it tonight then.
d
I did not change anything from the one I sent you before. No Time :(
OK... not sure if this would be helpful... been working on a responsive upgrade for one of my sites... still haven't upload yet so can't test this on a small device, seems to work resizing the browser. Love the colorbox mod... way easy to install.
Running Zen 1.5.1
Responsive blue... can't really say it's blue anymore..
jquery 1.10.2.min
jquery colorbox v1.4.4 (2013) to fix an conflict, had to upgrade colorbox and jquer min..
added this just above the </head> tag in template html_header.php file
In testing the colorbox resized to meet the screen width... hopefully I can test it soon live...Code:<script type="text/javascript">
// Make ColorBox responsive
jQuery.colorbox.settings.maxWidth = '95%';
jQuery.colorbox.settings.maxHeight = '95%';
// ColorBox resize function
var resizeTimer;
function resizeColorBox()
{
if (resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
if (jQuery('#cboxOverlay').is(':visible')) {
jQuery.colorbox.load(true);
}
}, 300);
}
// Resize ColorBox when resizing window or changing mobile device orientation
jQuery(window).resize(resizeColorBox);
window.addEventListener("orientationchange", resizeColorBox, false);
</script>
I got the code from another forum post, and was looking at the same answer for myself, thought I'd pass it along.