bootstrap-notify icon indicating copy to clipboard operation
bootstrap-notify copied to clipboard

demo page

Open joaofgf opened this issue 10 years ago • 1 comments

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. 2014-05-03_20-43-27

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

joaofgf avatar May 03 '14 19:05 joaofgf

Yep. Hit this too. Anybody with HTTPS Everywhere installed will run into this.

mlissner avatar Nov 24 '15 21:11 mlissner