I added bootstrap for ember to my project via ember-cli-bootstrap. My browser is now giving "unsafe-inline" warnings in the console. I can disable this by editing environment.js and adding "unsafe-inline" to the "style-src" of the content security policy (CSP). It would be nice to not have to do that, however. This basically weakens a security feature of the browser.
I believe the issue is due to attributeBindings: ['style'] in some components. In particular, I noticed this in Notifications and GrowlNotifications.
I added bootstrap for ember to my project via ember-cli-bootstrap. My browser is now giving "unsafe-inline" warnings in the console. I can disable this by editing environment.js and adding "unsafe-inline" to the "style-src" of the content security policy (CSP). It would be nice to not have to do that, however. This basically weakens a security feature of the browser.
I believe the issue is due to
attributeBindings: ['style']in some components. In particular, I noticed this in Notifications and GrowlNotifications.