Skip to content

Instantly share code, notes, and snippets.

View DavidFrahm's full-sized avatar

David Frahm DavidFrahm

  • Jefferson City, MO, USA
View GitHub Profile
@MattDionis
MattDionis / defaultImage.directive.js
Last active August 29, 2015 14:20
Angular directive to replace '404' image with default image
angular
.module('app')
.directive('defaultImage', defaultImage);
function defaultImage() {
var directive = {
link: link,
restrict: 'A'
};
return directive;