Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 963 Bytes

kibana-plugin-core-public.chromedoctitle.md

File metadata and controls

39 lines (23 loc) · 963 Bytes

Home > kibana-plugin-core-public > ChromeDocTitle

ChromeDocTitle interface

APIs for accessing and updating the document title.

Signature:

export interface ChromeDocTitle 

Example 1

How to change the title of the document

chrome.docTitle.change('My application')

Example 2

How to reset the title of the document to it's initial value

chrome.docTitle.reset()

Methods

Method Description
change(newTitle) Changes the current document title.
reset() Resets the document title to it's initial value. (meaning the one present in the title meta at application load.)