Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

$tooltipProvider error at angular 1.4.7+

I am trying to upgrade my angular version from 1.3.15 to 1.4.7+. All my bower components got downloaded and gulp run successfully. When I load my page, I got the $tooltipProvider error in console. how to clear this

Any help regarding this is appreciated.

like image 535
Senthil Kumar J Avatar asked Apr 09 '16 06:04

Senthil Kumar J


Video Answer


1 Answers

One of components in the module "itranscript" needs a service named $tooltip (or on its provider $tooltipProvider), and the module defining that service is not available.

$tooltip is not a standard angular service. It probably is a service from an old version of angular ui bootstrap. And you probably forgot to depend on ui-bootstrap, or you depend on a newer version that no longer has this service, now renamed to $uibTooltip.

I don't see how you could get that error by just upgrading the angular version. You probably upgraded other libraries too.

like image 105
JB Nizet Avatar answered Nov 15 '22 04:11

JB Nizet