holder.js with angularjs workaround
Mar 20, 2014```js directives.js angular.module(‘mean’).directive(‘holderFix’, function () { return { link: function (scope, element, attrs) { Holder.run({images: element[0], nocss: true}); } }; });
```html index.html
<img src="holder.js/100x100" alt="" holder-fix>