Reputation: 208
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.
Any help regarding this is appreciated.
Upvotes: 5
Views: 1605
Reputation: 692073
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.
Upvotes: 9