17 lines
554 B
YAML
17 lines
554 B
YAML
- domain: americanbanker.com
|
|
paths:
|
|
- /news
|
|
injections:
|
|
- position: head
|
|
append: |
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
const inlineGate = document.querySelector('.inline-gate');
|
|
if (inlineGate) {
|
|
inlineGate.classList.remove('inline-gate');
|
|
const inlineGated = document.querySelectorAll('.inline-gated');
|
|
for (const elem of inlineGated) { elem.classList.remove('inline-gated'); }
|
|
}
|
|
});
|
|
</script>
|