UNPKG

node-viewerjs

Version:

Document viewer component for PDF and ODF documents. Done with just HTML5, CSS3, and JavaScript. Powered by pdf.js and WebODF.

13 lines (11 loc) 366 B
var pdfjs_version = '1.8.355', ViewerJS_version = '0.6.6'; function loadPlugin( pluginFile, callback ) { "use strict"; var script = document.createElement('script'); script.async = false; script.onload = callback; script.src = pluginFile; script.type = 'text/javascript'; document.head.appendChild(script); }