helpcenter/Web/js/help/editor.tables.js
2018-07-13 15:35:52 +03:00

5 lines
532 B
JavaScript

$(function() {
$(".document_editors .formats tr td").each(function() {
"+" == $(this).text() ? $(this).html('<span class="yes"></span>') : "" == $(this).text() && $(this).html('<span class="no"></span>')
}), $(".document_editors .formats tr td:nth-child(3)").addClass("centeredText"), $(".document_editors .formats tr td:nth-child(4)").addClass("centeredText"), $(".document_editors .formats tr td:nth-child(5)").addClass("centeredText"), $(".document_editors .formats tr:first-child").addClass("tableHeader")
});