2017-03-11 02:30:44 -05:00
|
|
|
/* eslint-disable func-names, space-before-function-paren, prefer-arrow-callback, no-var */
|
|
|
|
|
|
|
|
$(document).on('todo:toggle', function(e, count) {
|
2017-03-29 17:16:57 -04:00
|
|
|
var $todoPendingCount = $('.todos-count');
|
2017-03-11 02:30:44 -05:00
|
|
|
$todoPendingCount.text(gl.text.highCountTrim(count));
|
|
|
|
$todoPendingCount.toggleClass('hidden', count === 0);
|
|
|
|
});
|