tengard
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN ImageFlow] IE8 Invalid argument imageflow.js Line:377Haven’t played with that as I don’t use the reflection on my site. I’ll look at it when I have time and see what I can dig up.
Forum: Plugins
In reply to: [Plugin: NextGEN ImageFlow] IE8 Invalid argument imageflow.js Line:377Fixed this issue. I’m no browser expert, but it seems IE doesn’t like manipulating DOM elements with the domReady call. I changed line 59 of /wp-content/plugins/nextgen-imageflow/lib/functions.php to:
$out .= "\n\t".'window.onload = function() {';Make line 165:
$out .= "\n\t".'};';Seems IE8 likes window.onload instead of domReady(). I’m pretty new to this, so if someone can tell me why, that would be great.
Thanks
Forum: Plugins
In reply to: [Plugin: NextGEN-ImageFlow] onClick Option Does Not WorkJust replace line 94 of wp-content/plugins/nextgen-imageflow/lib/functions.php with:
$out .= "\n\t\t\t" . ', onClick: function() { return hs.expand(this,{ src: this.getAttribute(' . '\'longdesc\'' . ')});}';Then set the ‘onClick Behavior’ setting of ImageFlow General Settings to a value of ‘other’. ( You can use any text, other then the default of ‘function() { document.location = this.url; }’)
Should be all you need. It worked for me.