Results 23 comments of godsdog

I also needed an external script to load after the iframe is loaded. I solved it with the callback: ``` function init_script() { $( '' ).insertAfter( '#iframeId' ); } ```...

Just to mentioned: On the iframed page we use the size method to send the correct height: `if ('parentIFrame' in window) { parentIFrame.size(newHeight); }` Therefore on the parent page we...

Can you take a look to the ipad remote console? 1. Wrong height: ![debug-iframe-1](https://user-images.githubusercontent.com/4984883/86016299-e57c3b80-ba22-11ea-9b34-1cdc04272200.jpg) 2. Correct height after rotating the ipad: ![debug-iframe-2](https://user-images.githubusercontent.com/4984883/86016334-f5941b00-ba22-11ea-9a89-114edef932f7.jpg) I am not sure where to start to...

We could fix it by using these lines on our iframed page: ``` window.iFrameResizer = { onReady: function () { iframeResize(); // Our custom height calculation function } } ```...

Gibt es hier schon was neues? Habe in einer Unterordner Installation das gleiche Problem, dass der Unterordner doppelt in die URL gehängt wird. yCom 4.0.3 und Redaxo 5.12.0

Hab es mal Quick and Dirty für mich gefixt: In: /ycom/plugins/auth/lib/ycom_auth.php Ab Zeile 510: Vorher: ``` if (!preg_match('/http(s?)\:\/\//i', $returnTo)) { $returnTo = rex_yrewrite::getFullPath(('/' == substr($returnTo, 0, 1) ? substr($returnTo, 1)...

Ist auf gemacht: https://github.com/yakamara/redaxo_ycom/issues/356

Have the same problem on an actual client site. Just fixed it with the following code: Put the following code at line 57 in jquery.sticky.js: ``` // Fix height issue...

Would be great to add this to the options!

Nachtrag: Der PLAIN Text wird nur dann versendet, wenn ich das HTML Template Feld leer lasse. Ich möchte jedoch gerne die PLAIN Variante individuell gestalten. Es soll also HTML und...