UNPKG

ifrau

Version:

Free-range app utility for IFRAME-based FRAs

14 lines (13 loc) 275 B
export function hostSyncTitle(options) { options = options || {}; return host => { host.onEvent('title', (title, iframeOnly) => { if (!iframeOnly && options.page) { document.title = title; } if (host.iframe) { host.iframe.title = title; } }); }; }