Changeset 5741
- Timestamp:
- 06/21/08 15:22:16 (7 months ago)
- Location:
- trunk/plugins/tooltip
- Files:
-
- 3 modified
-
changelog.txt (modified) (1 diff)
-
jquery.tooltip.js (modified) (3 diffs)
-
todo (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/tooltip/changelog.txt
r5341 r5741 2 2 --- 3 3 4 * Added fade option for fading in/out tooltips4 * Added fade option (duration in ms) for fading in/out tooltips; IE <= 6 is excluded when bgiframe plugin is included 5 5 * Fixed imagemaps in IE, added back example 6 6 * Added positionLeft-option - positions the tooltip to the left of the cursor 7 * Remove deprecated $.fn.Tooltip in favor of $.fn.tooltip 7 8 8 9 1.2 -
trunk/plugins/tooltip/jquery.tooltip.js
r5642 r5741 187 187 function show() { 188 188 tID = null; 189 if ( settings(current).fade) {189 if ((!IE || !$.fn.bgiframe) && settings(current).fade) { 190 190 if (helper.parent.is(":animated")) 191 191 helper.parent.stop().show().fadeTo(settings(current).fade, current.tOpacity); … … 280 280 helper.parent.removeClass( tsettings.extraClass ).hide().css("opacity", ""); 281 281 } 282 if ( tsettings.fade) {282 if ((!IE || !$.fn.bgiframe) && tsettings.fade) { 283 283 if (helper.parent.is(':animated')) 284 284 helper.parent.stop().fadeTo(tsettings.fade, 0, complete); … … 292 292 } 293 293 294 $.fn.Tooltip = $.fn.tooltip;295 296 294 })(jQuery); -
trunk/plugins/tooltip/todo
r5133 r5741 8 8 * add stick on hover of tooltip (with track:false) 9 9 * offer hoverIntent support 10 * add image map support (see http://test.learningjquery.com/clue/chic-test.html)11 * remove $.Tooltip/$.fn.Tooltip
