10 lines
378 B
JavaScript
10 lines
378 B
JavaScript
/* eslint-disable wrap-iife, func-names, space-before-function-paren, padded-blocks, prefer-arrow-callback, no-var, max-len */
|
|
(function() {
|
|
|
|
$(document).on('todo:toggle', function(e, count) {
|
|
var $todoPendingCount = $('.todos-pending-count');
|
|
$todoPendingCount.text(gl.text.addDelimiter(count));
|
|
$todoPendingCount.toggleClass('hidden', count === 0);
|
|
});
|
|
|
|
})();
|