Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81fcaf0643016ceb3bbe75cda1d8d11e75f2963d (plain)
1
2
3
4
5
6
7
8
9
10
/* eslint-disable */
(function() {

  $(document).on('todo:toggle', function(e, count) {
    var $todoPendingCount = $('.todos-pending-count');
    $todoPendingCount.text(gl.text.addDelimiter(count));
    $todoPendingCount.toggleClass('hidden', count === 0);
  });

})();