raido357
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
For example:
var title = $('span',this); if (_this.menuSettings.fadeInTitle != null && title.length > 0) { if (itemDim == _this.menuSettings.openDim) { if (_this.menuSettings.fadeInTitle) title.animate({'opacity':0.7}); else title.filter(':not(:animated)').animate({'opacity':0}); } else { if (_this.menuSettings.fadeInTitle) title.animate({'opacity':0}); else title.filter(':not(:animated)').animate({'opacity':0.7}); } }
Something like this, without .stop() at all should work fine. Just filtering if element no animated, no need to worry about queues.
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Edit in tinymce disorganizedForum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Formatting missing in editorId suggest another possible fix for WP 3.3.1.
Open qtranslate/qtranslate_wphacks.php file, find line 77.
And replace this:
if(‘html’ != wp_default_editor()) {
remove_filter(‘the_editor_content’, ‘wp_richedit_pre’);
}WITH:
$version = (float) get_bloginfo( ‘version’ );
if ( $version < 3.3 ) {
if(‘html’ != wp_default_editor()) {
remove_filter(‘the_editor_content’, ‘wp_richedit_pre’);
}
}This simply disables filter removing for WP 3.3.1. After doing that, all my formatting in posts and pages was correct.
Hope it works for others too.
Viewing 4 replies - 1 through 4 (of 4 total)