Skip to content

Instantly share code, notes, and snippets.

@kukac7
Created March 19, 2016 18:34
Show Gist options
  • Save kukac7/92d7a95145c95c9a44dd to your computer and use it in GitHub Desktop.
Save kukac7/92d7a95145c95c9a44dd to your computer and use it in GitHub Desktop.
isotope angular directive
app.directive('iso', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
$(element).isotope(scope.$eval(attrs.iso));
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment