0.1.2 • Published 8 years ago

ng2-safe-img v0.1.2

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

ng2-safe-img Build Status

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:

unsafe img with undefined uri