bootstrap-notify
bootstrap-notify copied to clipboard
demo page
Hello,
If you use https, the demo page is not working. It uses a secure protocol (https) and all the include files are in non-secure protocol (http). Modern browsers does not include unsecure files on secure main file.
Solution 1: use protocol-relative urls: instead of
http://getbootstrap.com/2.3.2/assets/js/jquery.js
use
//getbootstrap.com/2.3.2/assets/js/jquery.js
Solution 2: use secure protocol instead of
http://getbootstrap.com/2.3.2/assets/js/jquery.js
use
https://getbootstrap.com/2.3.2/assets/js/jquery.js
Regards
Yep. Hit this too. Anybody with HTTPS Everywhere installed will run into this.