helpcenter/helpcenter.r7-office.ru/Web/js/builder/last.js

12 lines
463 B
JavaScript
Raw Permalink Normal View History

$(window).load(function() {
var pageTitleValue = $('h1.page-title').text();
if (pageTitleValue == '') {
return false;
} else {
$('.prettyprint.source.linenums li span').each(function (index) {
if ($(this).is(':contains(' + pageTitleValue + ')') && $(this).is(':not(:contains(".docx"))') && $(this).is(':not(:contains(".xlsx"))')) {
$(this).addClass('api_highlighted');
}
});
}
});