13

After upgrading to angular-bootstrap 1.2, this error occurred when loading my app:

Unknown provider: $modalProvider <- $modal <- Controller

James Gentes
  • 7,528
  • 7
  • 44
  • 64

1 Answers1

48

Angular UI Bootstrap renamed the $modal directive to $uibModal in version 0.14.0.

Also note that $modalInstance is now $uibModalInstance.

See the Angular UI Bootstrap documentation for Modal here.

James Gentes
  • 7,528
  • 7
  • 44
  • 64