Bug Tracker

Opened 16 years ago

Closed 16 years ago

#1336 closed bug (wontfix)

click doesn't hide tooltip

Reported by: razboinik Owned by: stefan
Priority: major Milestone: 1.2
Component: interface Version: 1.1.2
Keywords: iTooltip, tooltip, interface tooltip Cc:
Blocked by: Blocking:

Description

Hello, this is my first post

today I started using jquery with interface elements for my project, and noticed there were some problems with the tooltips, I use Firefox. Whenever I click a link with a tooltip or open link in a new tab , the tooltip will follow the cursor.

I could fix the first problem (when clicking a link inside the page) with this line in show():

jEl.bind('mouseout',jQuery.iTooltip.hide) .bind('click',jQuery.iTooltip.hidefocused) .bind('blur',jQuery.iTooltip.hidefocused);

and in hide() :

jQuery(el) .attr('title',jQuery.iTooltip.oldTitle) .unbind('mouseout', jQuery.iTooltip.hide) .unbind('click', jQuery.iTooltip.hidefocused) .unbind('blur', jQuery.iTooltip.hidefocused);

but the open click new tab couldn't fix it.

Also from time to time the tooltip tends to remain open regardless the pointer position, just clicking anywhere will release it. but is pretty annoying.

Anyone having similar issues?

Attachments (2)

tooltip.patch (127 bytes) - added by razboinik 16 years ago.
itooltip.patch (1.2 KB) - added by razboinik 16 years ago.

Download all attachments as: .zip

Change History (4)

comment:1 Changed 16 years ago by razboinik

Another thing, the original element has a onmouseover function which changes the self.status, but the plugin disables it 'cause it binds its own function, i was wondering how could i change the self.status within' iToolTip.show()

Or put it this way how can i tell jquery to change the self.status text

Changed 16 years ago by razboinik

Attachment: tooltip.patch added

Changed 16 years ago by razboinik

Attachment: itooltip.patch added

comment:2 Changed 16 years ago by scott.gonzal

Resolution: wontfix
Status: newclosed

Interface is no longer supported; consider switching to jQuery UI.

Note: See TracTickets for help on using tickets.