Make enter on 'Click here to print' work. Style tab outline better.

Issue #10
This commit is contained in:
Ian Gulliver
2018-12-02 06:13:54 +00:00
parent 2fd04e2618
commit c6e642e93a
2 changed files with 27 additions and 5 deletions

View File

@@ -65,9 +65,8 @@ class PassMate {
this.addElement('li', printreqs, 'Layout/Orientation: Landscape');
this.addElement('li', printreqs, 'Two-sided: Long edge (or just enabled)');
let printStep = this.addElement('li', instr, 'Click here to print the book!');
printStep.style.fontWeight = 'bold';
printStep.style.cursor = 'pointer';
let printStep = this.addElement('li', instr);
let print = this.addElement('button', printStep, 'Click here to print the book!');
printStep.addEventListener('click', () => {
window.print();
});