mirror of
https://github.com/aljazceru/BitcoinAndLightningLayerSpecs.github.io.git
synced 2025-12-17 14:04:20 +01:00
9 lines
321 B
JavaScript
9 lines
321 B
JavaScript
addEventListener("load", function(){
|
|
Array.prototype.forEach.call(document.querySelectorAll("h1"), function(h1){
|
|
h1.innerHTML = "<span>" + h1.innerHTML + "</span>"
|
|
})
|
|
var title = document.createElement("title")
|
|
title.innerHTML = document.title
|
|
document.body.insertBefore(title, document.body.firstChild)
|
|
})
|