Changeset 5555
- Timestamp:
- 05/12/08 00:52:00 (4 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/cluetip/jquery.cluetip.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/cluetip/jquery.cluetip.js
r4880 r5555 87 87 88 88 // create the cluetip divs 89 if (!$ cluetip) {89 if (!$('#cluetip').length) { 90 90 $cluetipInner = $('<div id="cluetip-inner"></div>'); 91 91 $cluetipTitle = $('<h3 id="cluetip-title"></h3>'); … … 231 231 ajaxSettings.complete = function() { 232 232 imgCount = $('#cluetip-inner img').length; 233 if (imgCount ) {234 $('#cluetip-inner img').load( function(){233 if (imgCount && !$.browser.opera) { 234 $('#cluetip-inner img').load(function() { 235 235 imgCount--; 236 236 if (imgCount<1) { … … 362 362 .children().empty(); 363 363 if (tipTitle) { 364 $this.attr( 'title', tipTitle);364 $this.attr(opts.titleAttribute, tipTitle); 365 365 } 366 366 $this.css('cursor','');
