(function () { 'use strict'; /** * @ngdoc directive * @name passmanApp.directive:passwordGen * @description * # passwordGen */ angular.module('passmanApp') .directive('progressBar', [function () { return { restrict: 'A', template: '' + '
' + '
' + '{{progress}}% Complete' + '{{index}} / {{total}}' + '{{progress}}%' + '
' + '
', scope: { progress: '=progressBar', index: '=index', total: '=total' }, link: function () { } }; }]); }());