Skip to content

Instantly share code, notes, and snippets.

@vovayartsev
Last active August 29, 2015 14:16
Show Gist options
  • Save vovayartsev/acbe9ac5af89f8548824 to your computer and use it in GitHub Desktop.
Save vovayartsev/acbe9ac5af89f8548824 to your computer and use it in GitHub Desktop.
Identify log entries without comments
(function() {
function isBlankLog(log) { return !log.update_text }
$('.table-treport-cell-wrap').each(function(){
var time = $(this).scope().time;
var logs = time ? time.time_logs : [];
if (_.any(logs, isBlankLog)) {
$(this).css('color', 'red')
}
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment