Yes, enabled fix jquery.
Template and modules without jevents have no errors.
I get 2 errors on jevents calendar page:
- Uncaught ReferenceError: jQuery is not defined
- Uncaught TypeError: undefined is not a function
Pretty sure 2nd error refers to the 1st.
How does your plugin check for the bootstrap version?
Is it here:
var jevjq;
function checkJQ() {
//alert(typeof $);
if (window.jQuery && jQuery.fn) {
jevjq = jQuery.noConflict();
}
}
checkJQ();
// Will be true if bootstrap 3 is loaded, false if bootstrap 2 or no bootstrap
var bootstrap3_enabled = (typeof jQuery().emulateTransitionEnd == 'function');
// workaround for tooltips and popovers failing when MooTools is enabled with Bootstrap 3
// See http://www.mintjoomla.com/support/community-forum/user-item/1833-braza/48-cobalt-8/2429.html?start=20
if(window.MooTools && bootstrap3_enabled) {
var mHide = Element.prototype.hide;
var mSlide = Element.prototype.slide;
Element.implement({
hide: function () {
if (this.is("[rel=tooltip]")) {
return this;
}
mHide.apply(this, arguments);
},
slide: function (v) {
if (this.hasClass("carousel")) {
return this;
}
mSlide.apply(this, v);
}
});
}
Is it looking for a file name? Or some tag in the file? Or something else.
Thanks.