ccm.app.js conflict

Permalink
Hi

I am having an issue with integrating a superfish menu, where when logged in, Superfish is adding the sfHover class to the top level UL rather than the hovered LI.

Essentially the dropdowns aren't appearing, however i have narrowed it down to this file:

/concrete/js/ccm.app.js

Any ideas what the conflict maybe? or where i can get an uncompressed version of this file?

Would this count as a bug?

Thanks in advance

BHWW
 
BHWW replied on at Permalink Reply
BHWW
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
I'm not sure why this is happening, but in case you may need to do some R&D, here is the beautifier. Here is a link by which you can uncompress the js.http://jsbeautifier.org/

Rony
BHWW replied on at Permalink Reply
BHWW
Thanks Rory

Very useful
BHWW replied on at Permalink Reply
BHWW
Ok for an0yone also experiencing this issue, I removed hoverINtent and:

if ($.fn.hoverIntent && !o.disableHI) {
               $menu.hoverIntent(over, out, targets);
            }
            else {.}
and
.off('.hoverIntent')


and it all works now, hoverintent conflict i guess
BHWW replied on at Permalink Best Answer Reply
BHWW
Actually it works better if you just call the updated hoverIntent script after concrete has so add:


<script src="<?=$this->getThemePath()?>/js/hoverIntent.js" type="text/javascript" language="javascript"></script>

after:

<?php Loader::element('footer_required'); ?>