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