$(function() {
	if ($('.lt-lesson-files').length > 0) {
		$('.files-table tr').each((i,e)=>{ 
			$(e).attr('onclick','window.open("'+$(e).find('a').attr('href')+'", "_blank");');
            $(e).removeAttr('href');
		})
	}
})