Bug Tracker

Ticket #2023 (new bug)

Opened 12 months ago

Last modified 11 months ago

Highlight of interface plugin creates an error

Reported by: thezapper Owned by:
Priority: minor Milestone: 1.2.1
Component: plugin Version: 1.2.1
Keywords: Highlight interface Cc:
Needs: Review

Description

The Highlight function of the interface plugin throws an error:

jQuery.dequeue is not a function

Change History

Changed 12 months ago by thezapper

It seems that all animation functions of interface.js have that problem. Is there a workaround. I heard that interface is replaced by jQuery UI. But in the docs I cant find handy functions like that.

Changed 11 months ago by torben

interface.js is not compatible with jQ 1.2.x. Anyone interested in using interface.js with jQuery 1.2.x should consider adding this to the top of interface.js:

(function(jQuery){
/* Backwards compatibility to make JQuery 1.2.x to work with interface.js */
	jQuery.extend({ dequeue : function(elem, effect) {
			jQuery(elem).dequeue(effect);
		}
	});
})(jQuery);

(from http://theneubeck.blogspot.com/2007/11/jquery-interfacejs-issues.html)

Note: See TracTickets for help on using tickets.