Metis.MetisProgress = function()

in ui/js/app.js [1069:1083]


  Metis.MetisProgress = function () {
    var $bar = $('.progress .progress-bar');
    $.each($bar, function () {

      var $this = $(this);

      $this.animate({
        width: $(this).attr('aria-valuenow') + '%'
      }).popover({
        placement: 'bottom',
        title: 'Source',
        content: this.outerHTML
      });
    });
  };