Skip to content

Instantly share code, notes, and snippets.

@gtrak
Created August 12, 2013 02:22
Show Gist options
  • Save gtrak/6207864 to your computer and use it in GitHub Desktop.
Save gtrak/6207864 to your computer and use it in GitHub Desktop.
<btn icon="icon-step-backward">Replay</btn>
angular.module('myApp', []).directive('btn', function() {
return {
scope: { icon: '@' },
template: '<button class="btn span4"><i class="{{icon}}"></i>{{extra}}</button>',
restrict: 'E'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment