Index: openacs-4/packages/xowiki/www/resources/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js,v diff -u -r1.1 -r1.2 --- openacs-4/packages/xowiki/www/resources/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js 15 Jul 2007 16:07:46 -0000 1.1 +++ openacs-4/packages/xowiki/www/resources/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js 27 Jul 2007 01:15:21 -0000 1.2 @@ -21,9 +21,9 @@ var wym = this; //bind events on buttons - $j(this._box).find(this._options.toolSelector).hover( + jQuery(this._box).find(this._options.toolSelector).hover( function() { - wym.status($j(this).html()); + wym.status(jQuery(this).html()); }, function() { wym.status(' '); @@ -32,25 +32,25 @@ //classes: add/remove a style attr to matching elems //while mouseover/mouseout - $j(this._box).find(this._options.classSelector).hover( + jQuery(this._box).find(this._options.classSelector).hover( function() { var aClasses = eval(wym._options.classesItems); - var sName = $j(this).attr(WYM_NAME); + var sName = jQuery(this).attr(WYM_NAME); var oClass = aClasses.findByName(sName); if(oClass){ jqexpr = oClass.expr; //don't use jQuery.find() on the iframe body //because of MSIE + jQuery + expando issue (#JQ1143) - if(!$j.browser.msie) - $j(wym._doc).find(jqexpr).css('background-color','#cfc'); + if(!jQuery.browser.msie) + jQuery(wym._doc).find(jqexpr).css('background-color','#cfc'); } }, function() { //don't use jQuery.find() on the iframe body //because of MSIE + jQuery + expando issue (#JQ1143) - if(!$j.browser.msie) - $j(wym._doc).find('*').removeAttr('style'); + if(!jQuery.browser.msie) + jQuery(wym._doc).find('*').removeAttr('style'); } );