This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/ui/source-commit-link.js
2015-02-26 17:45:28 -05:00

22 lines
637 B
JavaScript

/**
* An element which displays a link to a commit in Git or Mercurial or another source control.
*/
angular.module('quay').directive('sourceCommitLink', function () {
var directiveDefinitionObject = {
priority: 0,
templateUrl: '/static/directives/source-commit-link.html',
replace: false,
transclude: false,
restrict: 'C',
scope: {
'commitSha': '=commitSha',
'urlTemplate': '=urlTemplate'
},
controller: function($scope, $element) {
$scope.getUrl = function(sha, template) {
return template.replace('{sha}', sha);
};
}
};
return directiveDefinitionObject;
});