swaldner
Forum Replies Created
-
@danieliser Thanks, I’ve done that but the animation still hangs at the top. Since it is created dynamically I’m having trouble debugging it in Chrome dev tools. Can you give me a class name or id for the animation element so that I can fix it up with some css?
Forum: Plugins
In reply to: [Store Locator Plus®] SLP Widget invalid html method attributeFound it and fixed it in file slpWidget.php on line 164. Please fix for future updates. Thanks.
Forum: Plugins
In reply to: [Stream Video Player] Playing not displaying only in IE (any version)Yup, just verified that. So does anyone know why and how to fix?
Forum: Plugins
In reply to: [Firelight Lightbox] Custom height not working correctlyLet me clarify: the custom width is ignored and the height displays the custom height only if it fits in the view window. So if I set height at 1100 but the view window is only 800 high, it will constrain to 800.
Forum: Plugins
In reply to: [Firelight Lightbox] Custom height not working correctlyI loaded the development version. The height works but now the width is being ignored (width of 800 displays 1200).
Forum: Plugins
In reply to: [Audio Player] Auto-stop does not work after AJAX load.In audio-player.js, the call that closes the previous player needs to be wrapped in a try-catch. This is becausee the previous flash player may not exist when ajaxing content. So just find the two instances and wrap them like so:
try
{ getPlayer(activePlayerID).close(); }
catch(err) {}