I have this tooltip in the input field:
<input id="chatMsg" uib-tooltip="something" tooltip-trigger="openTrigger" ng-model="chatMsg" />
and I want to show it on the custum trigger as follows:
angular.element('#chatMsg').trigger('openTrigger');
but I can not get it to work, on my previous versions of ui-bootstrap-tpls it worked (0.12.1) now I upgraded to 0.14.3
I also configured the provider as follows:
app.config(['$uibTooltipProvider', function ($uibTooltipProvider) { $uibTooltipProvider.setTriggers({ 'openTrigger': 'closeTrigger' }); }]);
Thanks.
source share