For a few days, the Sidebar link "Printable version" can't display its page anymore, because a new JavaScript event asks to the navigator to print the page instead. In ready.js:
$( '#t-print a' ).click( function ( e ) { window.print(); e.preventDefault(); } );
With Chrome it's not a problem because the print preview is displayed next to the printer choice.
Example:
- In https://en.wikibooks.org/wiki/MySQL/Print_version the link should display https://en.wikibooks.org/w/index.php?title=MySQL/Print_version&printable=yes
- https://fr.wikibooks.org/wiki/MySQL/Version_imprimable to https://fr.wikibooks.org/w/index.php?title=MySQL/Version_imprimable&printable=yes
Would it be possible to rollback this event please?