1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00
onion/js/utils/dom_utils.js

10 lines
136 B
JavaScript
Raw Normal View History

'use strict';
/**
2015-10-20 11:35:32 +02:00
* Set the title in the browser window.
*/
export function setDocumentTitle(title) {
2015-10-20 11:35:32 +02:00
document.title = title;
}