You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
Reopening #1926. If a tooltip is attached to a button that is disabled while the tooltip is displayed the hide trigger cannot fire, therefore the tooltip remains open. See this plunk: http://plnkr.co/edit/gjA46FQ8Ln74zgi8IMR2?p=preview
I propose adding the following to the tooltip directive:
attrs.$observe( 'disabled', function ( val ) {
if (val && ttScope.isOpen ) {
hide();
}
});
The text was updated successfully, but these errors were encountered:
Reopening #1926. If a tooltip is attached to a button that is disabled while the tooltip is displayed the hide trigger cannot fire, therefore the tooltip remains open. See this plunk: http://plnkr.co/edit/gjA46FQ8Ln74zgi8IMR2?p=preview
I propose adding the following to the tooltip directive:
The text was updated successfully, but these errors were encountered: