3
0
Idrees Jawad 499eda8249
All checks were successful
continuous-integration/drone/push Build is passing
fitness-giving theme update
2023-12-27 19:46:18 +05:30

17 lines
427 B
JavaScript

const privacyPolicy = document.getElementById('privacy-policy');
const headerWrapper = document.getElementById('kc-header-wrapper');
const header = document.getElementById('kc-header');
if (privacyPolicy) {
privacyPolicy.innerHTML = ''
}
if (headerWrapper) {
privacyPolicy.innerHTML = '<h2></h2><p></p>'
}
if (header) {
const logo = document.createElement('div');
logo.id = 'main-logo';
header.appendChild(logo);
}