Jesse

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Navigation on embedded calendar change page title #1272399
    Jesse
    Participant

    I couldn’t find a way to disable this so I just added some JavaScript to prevent it from happening. Code below for anyone curious.

    (function () {
        var lastTitle = undefined;
        function checkTitle() {
            if (lastTitle != document.title) {
                document.title = 'My Desired Title';
                lastTitle = document.title;
            }
        setTimeout(checkTitle, 100);
        };
        checkTitle();
    })();
Viewing 1 post (of 1 total)