├── .eslintrc ├── .gitignore ├── .npmrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── jsreport.config.js ├── lib └── phantom.js ├── package.json ├── studio ├── .npmignore ├── PhantomEditor.js ├── PhantomPdfProperties.js ├── PhantomTitle.js ├── constants.js ├── main.js ├── main.js.map └── main_dev.js └── test └── phantomTest.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/index.js -------------------------------------------------------------------------------- /jsreport.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/jsreport.config.js -------------------------------------------------------------------------------- /lib/phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/lib/phantom.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/package.json -------------------------------------------------------------------------------- /studio/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/.npmignore -------------------------------------------------------------------------------- /studio/PhantomEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/PhantomEditor.js -------------------------------------------------------------------------------- /studio/PhantomPdfProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/PhantomPdfProperties.js -------------------------------------------------------------------------------- /studio/PhantomTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/PhantomTitle.js -------------------------------------------------------------------------------- /studio/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/constants.js -------------------------------------------------------------------------------- /studio/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/main.js -------------------------------------------------------------------------------- /studio/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/main.js.map -------------------------------------------------------------------------------- /studio/main_dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/studio/main_dev.js -------------------------------------------------------------------------------- /test/phantomTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsreport/jsreport-phantom-pdf/HEAD/test/phantomTest.js --------------------------------------------------------------------------------