We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28dac1b commit a2084e5Copy full SHA for a2084e5
_static/download_pdf.js
@@ -0,0 +1,6 @@
1
+document.addEventListener('DOMContentLoaded', function(){
2
+ /// download whole book PDF
3
+ document.querySelectorAll('.btn-download-pdf-button').forEach(a => {
4
+ a.onclick = () => window.open("/state-of-open-source-ai.pdf");
5
+ });
6
+});
0 commit comments