craftpip / angular-confirm

A multipurpose plugin for alert, confirm & dialog for angular1
http://craftpip.github.io/angular-confirm/
MIT License
115 stars 20 forks source link

angular-confirm requires jQuery #33

Closed Talhah closed 6 years ago

Talhah commented 6 years ago

I am using Webpack with bootstrap 4 which is working fine. After I installed angular-confirm I am only receiving this message 'angular-confirm requires jQuery'.

Talhah commented 6 years ago

Ok I had to adjust my Webpack config to include jQuery globally.

new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }),