I've looked at this plugin. The problem here is that it adds javascripts and styles in its constructor, that is before any event. I don't know how to solve the problem without patching of the plugin. Correct solution should be something like replacing
by
and
by
parent::__construct( $subject );
by
parent::__construct( $subject );
}
function onAfterRoute()
{
if(defined('_MJ')) return;
and
function onPrepareContent( &$article, &$params ){
by
function onPrepareContent( &$article, &$params ){
if(defined('_MJ')) return;