mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
backupApp.directive('externalLink', function() {
|
|
return {
|
|
restrict: 'E',
|
|
transclude: true,
|
|
scope: {
|
|
link: '=link',
|
|
title: '=title'
|
|
},
|
|
templateUrl: 'templates/externallink.html'
|
|
}});
|