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
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
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
Rony
Thanks Rory
Very useful
Very useful
Ok for an0yone also experiencing this issue, I removed hoverINtent and:
and it all works now, hoverintent conflict i guess
if ($.fn.hoverIntent && !o.disableHI) { $menu.hoverIntent(over, out, targets); } else { ….} and .off('.hoverIntent')
and it all works now, hoverintent conflict i guess
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'); ?>
<script src="<?=$this->getThemePath()?>/js/hoverIntent.js" type="text/javascript" language="javascript"></script>
after:
<?php Loader::element('footer_required'); ?>
http://stackoverflow.com/questions/18450122/superfish-adding-hover-...