See comments -- there's not a fix specifically.
Hi,
I'm working on integrating oomph into mojoPortal (an open source cms [url:
http://www.codeplex.com/mojoportal]).
When I add the oomph.js or oomph.min.js to a page it breaks other useage of jquery on the page.
The cause is this line of code in oomph.js:
oomph = jQuery.noConflict(true);
I was able to fix it by changing that line to this:
oomph = jQuery;
Reading the documentation here:
[url:
http://docs.jquery.com/Core/jQuery.noConflict]
It seems this call should be avoided unless its needed to avoid other conflicts like with prototype or something, but making this call causes its own conflicts since it breaks other uses of jquery.