Newer Version Available

This content describes an older version of this product. View Latest

removeFromBrowserTitleQueue() for Lightning Experience

Removes a string from a list of titles that rotate in the browser title bar every three seconds. This method works only in Lightning console apps.

Accurate browser tab titles help improve accessibility. Screen readers announce page titles when a page is first loaded, and don’t announce dynamic updates to the title. Use the root node of the document, like document.title, to announce the updated browser tab title instead.

Note

Arguments

Name Type Description
title string The browser tab title to remove.

Sample Code

This component has a button that, when pressed, removes a string from a list of titles that rotate in the browser title bar every three seconds.

Component code:

1<aura:component implements="flexipage:availableForAllPageTypes" access="global" >
2    <lightning:workspaceAPI aura:id="workspace" />
3    <lightning:button label="Remove from Browser Title Queue" onclick="{! c.removeFromBrowserTitleQueue }" />
4</aura:component>

Controller code:

1({
2    removeFromBrowserTitleQueue : function(component, event, helper) {
3        var workspaceAPI = component.find("workspace");
4        workspaceAPI.removeFromBrowserTitleQueue({
5            title: "New Browser Title"
6        })
7        .then(function(result){
8            console.log(result);
9        })
10        .catch(function(error) {
11            console.log(error);
12        });
13    }
14})

Response

This method returns a promise that, open success, resolves to true.