mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
10 lines
136 B
JavaScript
10 lines
136 B
JavaScript
'use strict';
|
|
|
|
|
|
/**
|
|
* Set the title in the browser window.
|
|
*/
|
|
export function setDocumentTitle(title) {
|
|
document.title = title;
|
|
}
|