2021-06-17 10:07:43 +00:00
|
|
|
$(document).ready(function(){
|
2021-07-14 04:57:47 +00:00
|
|
|
$('#main-content > * > [class*="-title"] ,[data-pp] > * > [class*="-title"], .page-module-title').each(function(i,h3){
|
2021-06-17 10:07:43 +00:00
|
|
|
if($(h3).prop('tagName').match(/(h1|h2|h3|h4)/i) && $(h3).next(".seminar_hr").length == 0){
|
|
|
|
$(h3).after("<hr class=\"seminar_hr\">")
|
|
|
|
}
|
|
|
|
})
|
2021-07-14 04:57:47 +00:00
|
|
|
if($('[data-pp="200"]').html().trim() == "" && $('[data-pp="200"]').html().trim() == ""){
|
|
|
|
$(".main-content").css("border-bottom","0");
|
|
|
|
}
|
2021-06-17 10:07:43 +00:00
|
|
|
})
|