Skip to content

Instantly share code, notes, and snippets.

@rsgrafx
Created March 28, 2014 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsgrafx/9842954 to your computer and use it in GitHub Desktop.
Save rsgrafx/9842954 to your computer and use it in GitHub Desktop.
angular.module('cardUiApp')
.directive('card', function () {
return {
template: ' content',
restrict: 'AE',
scope: {
name: '@',
amount: '=',
save: '&'
},
transclude: true
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment