Msg&data rates may apply. To unsubscribe, text STOP to
25827 (212121 in Canada) . For help text HELP anytime.
Available in USA & Canada. Up to 25 msg/mo. Your privacy is always protected and your information will not be shared.
Powered by Club Texting
Powered by Club Texting
const { app } = require('electron')
const PDFWindow = require('electron-pdf-window')
app.on('ready', () => {
const win = new PDFWindow({
width: 800,
height: 600
})
win.loadURL('http://mozilla.github.io/pdf.js/web/compressed.tracemonkey-pldi-09.pdf')
})