Skip to content

Instantly share code, notes, and snippets.

@carlospliego
Created July 6, 2014 08:00
Show Gist options
  • Save carlospliego/f994db807f1cc696827b to your computer and use it in GitHub Desktop.
Save carlospliego/f994db807f1cc696827b to your computer and use it in GitHub Desktop.
HolderJs fix for angularJS
'use strict';
app.directive('holderFix', function () {
return {
link: function (scope, element, attrs) {
Holder.run({ images: element[0], nocss: true });
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment