Guest User

Untitled

a guest
Feb 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function pdfWindow() {
  2. const { BrowserWindow } = require('electron').remote
  3. const PDFWindow = require('electron-pdf-window')
  4. const win = new BrowserWindow({ width: 800, height: 800 })
  5. PDFWindow.addSupport(win)
  6. win.loadURL('http://mozilla.github.io/pdf.js/web/compressed.tracemonkey-pldi-09.pdf')
  7. }
Add Comment
Please, Sign In to add comment