After upgrading the bootstrap in my application from 3.3.6 to 4 I started getting error error $(...).modal is not a function, which(modal) was previously working fine. Error
angular.js:14700 TypeError: $(...).modal is not a function
at ReviewQueueController.js?V=1.2:122
at angular.js:20440
at completeOutstandingRequest (angular.js:6362)
at angular.js:6642
I am using angular js. when there is a success, error or any info I use modal. I have tried to replicate the issue with fiddle.
I have just started working on angular so i am not sure how to fix.
In many post i researched it was suggested to make changes to css
.fade.in {
opacity: 1;
}
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.modal-backdrop.in {
filter: alpha(opacity=50);
opacity: .5;
}
Also many link suggested to use noconflict like here. I am not sure how no conflict will work with angularjs
please suggest what i can do to fix the issue