mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
backupApp.directive('progressBar', function() {
|
|
return {
|
|
restrict: 'E',
|
|
scope: {
|
|
ngProgress: '=ngProgress',
|
|
ngText: '=ngText'
|
|
},
|
|
templateUrl: 'templates/progressbar.html',
|
|
controller: function($scope) {
|
|
|
|
}
|
|
}
|
|
});
|