ng2-safe-img
v0.1.2
Published
safe img for Angular 2
Downloads
5
Readme
ng2-safe-img
very tiny and safe img for Angular 2
Just consist from one structural directive - *safeSrc
.
And should be used with with :
<img *safeSrc="item.uri"/>
Example
Lets explain how does it work through example.
Here how should we use it
<img *safeSrc="item.uri"/>
if <item.uri> equal to 'https://placekitten.com/200/300' we will get
<img src="https://placekitten.com/200/300"/>
if <item.uri> is undefined or null we will get
<!--template bindings={
"ng-reflect-src": null
}-->
so no any html elements will be there. What saves us from seeing something like this: