1
0

title.js 453 B

123456789101112131415
  1. // Fix landing page tab title: "Introduction - ..." → "Gogs - ..."
  2. (function () {
  3. var old = "Introduction - Gogs";
  4. var fix = function () {
  5. if (document.title.startsWith(old)) {
  6. document.title = document.title.replace(old, "Gogs");
  7. }
  8. };
  9. new MutationObserver(fix).observe(
  10. document.querySelector("title") || document.head,
  11. { childList: true, subtree: true, characterData: true }
  12. );
  13. fix();
  14. setTimeout(fix, 100);
  15. })();