resumefy
Version:
A simple toolkit to bring your JSON Resume to life
14 lines (13 loc) • 499 B
JavaScript
export const menu = (openPreview) => () => {
const container = document.createElement('div');
container.style.position = 'fixed';
container.style.bottom = '1rem';
container.style.right = '1rem';
const button = document.createElement('button');
button.textContent = 'PDF';
button.style.cursor = 'pointer';
button.title = 'Open PDF preview in a new tab';
button.onclick = openPreview;
container.appendChild(button);
document.body.appendChild(container);
};