duplicati/Duplicati/Server/webroot/ngax/scripts/directives/progressBar.js
2016-09-15 11:39:27 +02:00

13 lines
264 B
JavaScript

backupApp.directive('progressBar', function() {
return {
restrict: 'E',
scope: {
ngProgress: '=ngProgress',
ngText: '=ngText'
},
templateUrl: 'templates/progressbar.html',
controller: function($scope) {
}
}
});