Skip to content

Instantly share code, notes, and snippets.

@tristanpendergrass
Created October 17, 2014 12:36
Show Gist options
  • Save tristanpendergrass/d0d2c913365ae983c99e to your computer and use it in GitHub Desktop.
Save tristanpendergrass/d0d2c913365ae983c99e to your computer and use it in GitHub Desktop.
angular.module('berlin')
.directive('jsonDl', function ($sce) {
return {
restrict: 'E',
template: '<a href="{{dataUrl}}">Download</a>',
controller: function (scope) {
scope.dataUrl = 'http://google.com';
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment