Так правильно будет? 
$('body').on('change', '.timer_input', function() {
    $('.tab-content .table_index').each(function() {
      $(this).find('.sum_total').text([].reduce.call(
          this.querySelectorAll('input.timer_input'),
          (res, node) => res + +(node.value || 0),
          0
      ));
    });
  })