2021-06-17 10:07:43 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
$("[data-subpart-id],#main-content").each(function(i,v){
|
2021-07-14 04:57:47 +00:00
|
|
|
if($(v).parent(".body-banner").length == 0 && $(v).html().trim() != ""){
|
2021-06-17 10:07:43 +00:00
|
|
|
$(v).css("padding","1em");
|
|
|
|
}
|
|
|
|
})
|
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\">")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|