version 1.2.9 missing jquery.tools.min.js
-
Just updated to FT Calendar
1.2.9
and now the site is throwing JavaScript errors.From the Firebug console in Firefox.
“NetworkError: 404 Not Found – http://ironguyexample.com/wp-content/plugins/ft-calendar/includes/js/jquery.tools.min.js?ver=3.5”
“TypeError: $(…).tooltip is not a function”I did a quick fix by creating
/wp-content/plugins/ft-calendar/includes/js/jquery.tools.min.js
and putting the following javascript in it to create the tooltip method with no functionality.
// BEGIN code
jQuery.fn.tooltip = function() {
return this.each(function(){
});
};
// END codeI’d prefer to put the correct file in place but this fix has the site’s javascript functioning once again, which is an important short term fix.
The topic ‘version 1.2.9 missing jquery.tools.min.js’ is closed to new replies.