Bug Tracker

Changeset 5741

Show
Ignore:
Timestamp:
06/21/08 15:22:16 (7 months ago)
Author:
joern.zaefferer
Message:

tooltip: exclude IE from fading when bgiframe plugin is present; removed deprecated $.fn.Tooltip alias in favor of $.fn.tooltip

Location:
trunk/plugins/tooltip
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/tooltip/changelog.txt

    r5341 r5741  
    22--- 
    33 
    4 * Added fade option for fading in/out tooltips 
     4* Added fade option (duration in ms) for fading in/out tooltips; IE <= 6 is excluded when bgiframe plugin is included 
    55* Fixed imagemaps in IE, added back example 
    66* Added positionLeft-option - positions the tooltip to the left of the cursor 
     7* Remove deprecated $.fn.Tooltip in favor of $.fn.tooltip 
    78 
    891.2 
  • trunk/plugins/tooltip/jquery.tooltip.js

    r5642 r5741  
    187187    function show() { 
    188188        tID = null; 
    189         if (settings(current).fade) { 
     189        if ((!IE || !$.fn.bgiframe) && settings(current).fade) { 
    190190            if (helper.parent.is(":animated")) 
    191191                helper.parent.stop().show().fadeTo(settings(current).fade, current.tOpacity); 
     
    280280            helper.parent.removeClass( tsettings.extraClass ).hide().css("opacity", ""); 
    281281        } 
    282         if (tsettings.fade) { 
     282        if ((!IE || !$.fn.bgiframe) && tsettings.fade) { 
    283283            if (helper.parent.is(':animated')) 
    284284                helper.parent.stop().fadeTo(tsettings.fade, 0, complete); 
     
    292292    } 
    293293     
    294     $.fn.Tooltip = $.fn.tooltip; 
    295      
    296294})(jQuery); 
  • trunk/plugins/tooltip/todo

    r5133 r5741  
    88* add stick on hover of tooltip (with track:false) 
    99* offer hoverIntent support 
    10 * add image map support (see http://test.learningjquery.com/clue/chic-test.html) 
    11 * remove $.Tooltip/$.fn.Tooltip