├── .gitignore ├── LICENSE.md ├── README.md ├── bower.json ├── doc ├── README.md ├── android │ ├── screenshot01.png │ └── screenshot02.png ├── ios │ ├── screenshot01.png │ ├── screenshot02.png │ ├── screenshot03.png │ └── screenshot04.png └── todo.txt ├── libs └── android-support-v4.jar ├── npm_publish.bat ├── package.json ├── plugin.xml ├── src ├── android │ ├── de │ │ └── sitewaerts │ │ │ └── cordova │ │ │ └── documentviewer │ │ │ ├── DocumentViewerPlugin.java │ │ │ └── FileProvider.java │ └── res │ │ └── xml │ │ └── documentviewer_file_paths.xml ├── common │ └── js │ │ ├── angular-winjs │ │ ├── .bower.json │ │ ├── License.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── js │ │ │ └── angular-winjs.js │ │ └── tasks │ │ │ └── check-bom.js │ │ ├── angular │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── camelCase.js │ │ │ ├── init.js │ │ │ ├── nodeName.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ ├── toType.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rboxStyle.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── isFunction.js │ │ │ ├── isWindow.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ │ ├── pdfjs-dist │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── pdf.js │ │ │ ├── pdf.js.map │ │ │ ├── pdf.min.js │ │ │ ├── pdf.sandbox.js │ │ │ ├── pdf.sandbox.js.map │ │ │ ├── pdf.sandbox.min.js │ │ │ ├── pdf.worker.entry.js │ │ │ ├── pdf.worker.js │ │ │ ├── pdf.worker.js.map │ │ │ └── pdf.worker.min.js │ │ ├── cmaps │ │ │ ├── 78-EUC-H.bcmap │ │ │ ├── 78-EUC-V.bcmap │ │ │ ├── 78-H.bcmap │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ ├── 78-V.bcmap │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ ├── Add-H.bcmap │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ ├── Add-V.bcmap │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ ├── B5-H.bcmap │ │ │ ├── B5-V.bcmap │ │ │ ├── B5pc-H.bcmap │ │ │ ├── B5pc-V.bcmap │ │ │ ├── CNS-EUC-H.bcmap │ │ │ ├── CNS-EUC-V.bcmap │ │ │ ├── CNS1-H.bcmap │ │ │ ├── CNS1-V.bcmap │ │ │ ├── CNS2-H.bcmap │ │ │ ├── CNS2-V.bcmap │ │ │ ├── ETHK-B5-H.bcmap │ │ │ ├── ETHK-B5-V.bcmap │ │ │ ├── ETen-B5-H.bcmap │ │ │ ├── ETen-B5-V.bcmap │ │ │ ├── ETenms-B5-H.bcmap │ │ │ ├── ETenms-B5-V.bcmap │ │ │ ├── EUC-H.bcmap │ │ │ ├── EUC-V.bcmap │ │ │ ├── Ext-H.bcmap │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ ├── Ext-V.bcmap │ │ │ ├── GB-EUC-H.bcmap │ │ │ ├── GB-EUC-V.bcmap │ │ │ ├── GB-H.bcmap │ │ │ ├── GB-V.bcmap │ │ │ ├── GBK-EUC-H.bcmap │ │ │ ├── GBK-EUC-V.bcmap │ │ │ ├── GBK2K-H.bcmap │ │ │ ├── GBK2K-V.bcmap │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ ├── GBT-EUC-H.bcmap │ │ │ ├── GBT-EUC-V.bcmap │ │ │ ├── GBT-H.bcmap │ │ │ ├── GBT-V.bcmap │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ ├── H.bcmap │ │ │ ├── HKdla-B5-H.bcmap │ │ │ ├── HKdla-B5-V.bcmap │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ ├── HKm314-B5-H.bcmap │ │ │ ├── HKm314-B5-V.bcmap │ │ │ ├── HKm471-B5-H.bcmap │ │ │ ├── HKm471-B5-V.bcmap │ │ │ ├── HKscs-B5-H.bcmap │ │ │ ├── HKscs-B5-V.bcmap │ │ │ ├── Hankaku.bcmap │ │ │ ├── Hiragana.bcmap │ │ │ ├── KSC-EUC-H.bcmap │ │ │ ├── KSC-EUC-V.bcmap │ │ │ ├── KSC-H.bcmap │ │ │ ├── KSC-Johab-H.bcmap │ │ │ ├── KSC-Johab-V.bcmap │ │ │ ├── KSC-V.bcmap │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ ├── Katakana.bcmap │ │ │ ├── LICENSE │ │ │ ├── NWP-H.bcmap │ │ │ ├── NWP-V.bcmap │ │ │ ├── RKSJ-H.bcmap │ │ │ ├── RKSJ-V.bcmap │ │ │ ├── Roman.bcmap │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ ├── V.bcmap │ │ │ └── WP-Symbol.bcmap │ │ ├── image_decoders │ │ │ ├── pdf.image_decoders.js │ │ │ ├── pdf.image_decoders.js.map │ │ │ └── pdf.image_decoders.min.js │ │ ├── legacy │ │ │ ├── build │ │ │ │ ├── pdf.d.ts │ │ │ │ ├── pdf.js │ │ │ │ ├── pdf.js.map │ │ │ │ ├── pdf.min.js │ │ │ │ ├── pdf.sandbox.js │ │ │ │ ├── pdf.sandbox.js.map │ │ │ │ ├── pdf.sandbox.min.js │ │ │ │ ├── pdf.worker.entry.js │ │ │ │ ├── pdf.worker.js │ │ │ │ ├── pdf.worker.js.map │ │ │ │ └── pdf.worker.min.js │ │ │ ├── image_decoders │ │ │ │ ├── pdf.image_decoders.js │ │ │ │ ├── pdf.image_decoders.js.map │ │ │ │ └── pdf.image_decoders.min.js │ │ │ └── web │ │ │ │ ├── images │ │ │ │ ├── annotation-check.svg │ │ │ │ ├── annotation-comment.svg │ │ │ │ ├── annotation-help.svg │ │ │ │ ├── annotation-insert.svg │ │ │ │ ├── annotation-key.svg │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ ├── annotation-noicon.svg │ │ │ │ ├── annotation-note.svg │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ ├── loading-icon.gif │ │ │ │ └── shadow.png │ │ │ │ ├── pdf_viewer.css │ │ │ │ ├── pdf_viewer.js │ │ │ │ └── pdf_viewer.js.map │ │ ├── lib │ │ │ ├── README.md │ │ │ ├── core │ │ │ │ ├── annotation.js │ │ │ │ ├── arithmetic_decoder.js │ │ │ │ ├── ascii_85_stream.js │ │ │ │ ├── ascii_hex_stream.js │ │ │ │ ├── base_stream.js │ │ │ │ ├── bidi.js │ │ │ │ ├── catalog.js │ │ │ │ ├── ccitt.js │ │ │ │ ├── ccitt_stream.js │ │ │ │ ├── cff_font.js │ │ │ │ ├── cff_parser.js │ │ │ │ ├── charsets.js │ │ │ │ ├── chunked_stream.js │ │ │ │ ├── cmap.js │ │ │ │ ├── colorspace.js │ │ │ │ ├── core_utils.js │ │ │ │ ├── crypto.js │ │ │ │ ├── decode_stream.js │ │ │ │ ├── decrypt_stream.js │ │ │ │ ├── default_appearance.js │ │ │ │ ├── document.js │ │ │ │ ├── encodings.js │ │ │ │ ├── evaluator.js │ │ │ │ ├── file_spec.js │ │ │ │ ├── flate_stream.js │ │ │ │ ├── font_renderer.js │ │ │ │ ├── fonts.js │ │ │ │ ├── fonts_utils.js │ │ │ │ ├── function.js │ │ │ │ ├── glyphlist.js │ │ │ │ ├── image.js │ │ │ │ ├── image_utils.js │ │ │ │ ├── jbig2.js │ │ │ │ ├── jbig2_stream.js │ │ │ │ ├── jpeg_stream.js │ │ │ │ ├── jpg.js │ │ │ │ ├── jpx.js │ │ │ │ ├── jpx_stream.js │ │ │ │ ├── lzw_stream.js │ │ │ │ ├── metadata_parser.js │ │ │ │ ├── metrics.js │ │ │ │ ├── murmurhash3.js │ │ │ │ ├── name_number_tree.js │ │ │ │ ├── object_loader.js │ │ │ │ ├── opentype_file_builder.js │ │ │ │ ├── operator_list.js │ │ │ │ ├── parser.js │ │ │ │ ├── pattern.js │ │ │ │ ├── pdf_manager.js │ │ │ │ ├── predictor_stream.js │ │ │ │ ├── primitives.js │ │ │ │ ├── ps_parser.js │ │ │ │ ├── run_length_stream.js │ │ │ │ ├── standard_fonts.js │ │ │ │ ├── stream.js │ │ │ │ ├── struct_tree.js │ │ │ │ ├── to_unicode_map.js │ │ │ │ ├── type1_font.js │ │ │ │ ├── type1_parser.js │ │ │ │ ├── unicode.js │ │ │ │ ├── worker.js │ │ │ │ ├── worker_stream.js │ │ │ │ ├── writer.js │ │ │ │ ├── xfa │ │ │ │ │ ├── bind.js │ │ │ │ │ ├── builder.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── connection_set.js │ │ │ │ │ ├── datasets.js │ │ │ │ │ ├── factory.js │ │ │ │ │ ├── formcalc_lexer.js │ │ │ │ │ ├── formcalc_parser.js │ │ │ │ │ ├── html_utils.js │ │ │ │ │ ├── layout.js │ │ │ │ │ ├── locale_set.js │ │ │ │ │ ├── namespaces.js │ │ │ │ │ ├── parser.js │ │ │ │ │ ├── setup.js │ │ │ │ │ ├── signature.js │ │ │ │ │ ├── som.js │ │ │ │ │ ├── stylesheet.js │ │ │ │ │ ├── template.js │ │ │ │ │ ├── unknown.js │ │ │ │ │ ├── utils.js │ │ │ │ │ ├── xdp.js │ │ │ │ │ ├── xfa_object.js │ │ │ │ │ └── xhtml.js │ │ │ │ ├── xml_parser.js │ │ │ │ └── xref.js │ │ │ ├── display │ │ │ │ ├── annotation_layer.js │ │ │ │ ├── annotation_storage.js │ │ │ │ ├── api.js │ │ │ │ ├── api_compatibility.js │ │ │ │ ├── canvas.js │ │ │ │ ├── content_disposition.js │ │ │ │ ├── display_utils.js │ │ │ │ ├── fetch_stream.js │ │ │ │ ├── font_loader.js │ │ │ │ ├── metadata.js │ │ │ │ ├── network.js │ │ │ │ ├── network_utils.js │ │ │ │ ├── node_stream.js │ │ │ │ ├── node_utils.js │ │ │ │ ├── optional_content_config.js │ │ │ │ ├── pattern_helper.js │ │ │ │ ├── svg.js │ │ │ │ ├── text_layer.js │ │ │ │ ├── transport_stream.js │ │ │ │ ├── worker_options.js │ │ │ │ └── xfa_layer.js │ │ │ ├── examples │ │ │ │ └── node │ │ │ │ │ └── domstubs.js │ │ │ ├── pdf.js │ │ │ ├── pdf.sandbox.js │ │ │ ├── pdf.worker.js │ │ │ ├── shared │ │ │ │ ├── compatibility.js │ │ │ │ ├── is_node.js │ │ │ │ ├── message_handler.js │ │ │ │ ├── scripting_utils.js │ │ │ │ └── util.js │ │ │ ├── test │ │ │ │ └── unit │ │ │ │ │ ├── annotation_spec.js │ │ │ │ │ ├── annotation_storage_spec.js │ │ │ │ │ ├── api_spec.js │ │ │ │ │ ├── bidi_spec.js │ │ │ │ │ ├── cff_parser_spec.js │ │ │ │ │ ├── clitests_helper.js │ │ │ │ │ ├── cmap_spec.js │ │ │ │ │ ├── colorspace_spec.js │ │ │ │ │ ├── core_utils_spec.js │ │ │ │ │ ├── crypto_spec.js │ │ │ │ │ ├── custom_spec.js │ │ │ │ │ ├── default_appearance_spec.js │ │ │ │ │ ├── display_svg_spec.js │ │ │ │ │ ├── display_utils_spec.js │ │ │ │ │ ├── document_spec.js │ │ │ │ │ ├── encodings_spec.js │ │ │ │ │ ├── evaluator_spec.js │ │ │ │ │ ├── fetch_stream_spec.js │ │ │ │ │ ├── function_spec.js │ │ │ │ │ ├── jasmine-boot.js │ │ │ │ │ ├── message_handler_spec.js │ │ │ │ │ ├── metadata_spec.js │ │ │ │ │ ├── murmurhash3_spec.js │ │ │ │ │ ├── network_spec.js │ │ │ │ │ ├── network_utils_spec.js │ │ │ │ │ ├── node_stream_spec.js │ │ │ │ │ ├── parser_spec.js │ │ │ │ │ ├── pdf_find_controller_spec.js │ │ │ │ │ ├── pdf_find_utils_spec.js │ │ │ │ │ ├── pdf_history_spec.js │ │ │ │ │ ├── primitives_spec.js │ │ │ │ │ ├── scripting_spec.js │ │ │ │ │ ├── stream_spec.js │ │ │ │ │ ├── struct_tree_spec.js │ │ │ │ │ ├── test_utils.js │ │ │ │ │ ├── testreporter.js │ │ │ │ │ ├── type1_parser_spec.js │ │ │ │ │ ├── ui_utils_spec.js │ │ │ │ │ ├── unicode_spec.js │ │ │ │ │ ├── util_spec.js │ │ │ │ │ ├── writer_spec.js │ │ │ │ │ ├── xfa_formcalc_spec.js │ │ │ │ │ ├── xfa_parser_spec.js │ │ │ │ │ ├── xfa_tohtml_spec.js │ │ │ │ │ └── xml_spec.js │ │ │ └── web │ │ │ │ ├── annotation_layer_builder.js │ │ │ │ ├── app.js │ │ │ │ ├── app_options.js │ │ │ │ ├── base_tree_viewer.js │ │ │ │ ├── base_viewer.js │ │ │ │ ├── chromecom.js │ │ │ │ ├── debugger.js │ │ │ │ ├── download_manager.js │ │ │ │ ├── firefox_print_service.js │ │ │ │ ├── firefoxcom.js │ │ │ │ ├── generic_scripting.js │ │ │ │ ├── genericcom.js │ │ │ │ ├── genericl10n.js │ │ │ │ ├── grab_to_pan.js │ │ │ │ ├── interfaces.js │ │ │ │ ├── l10n_utils.js │ │ │ │ ├── overlay_manager.js │ │ │ │ ├── password_prompt.js │ │ │ │ ├── pdf_attachment_viewer.js │ │ │ │ ├── pdf_cursor_tools.js │ │ │ │ ├── pdf_document_properties.js │ │ │ │ ├── pdf_find_bar.js │ │ │ │ ├── pdf_find_controller.js │ │ │ │ ├── pdf_find_utils.js │ │ │ │ ├── pdf_history.js │ │ │ │ ├── pdf_layer_viewer.js │ │ │ │ ├── pdf_link_service.js │ │ │ │ ├── pdf_outline_viewer.js │ │ │ │ ├── pdf_page_view.js │ │ │ │ ├── pdf_presentation_mode.js │ │ │ │ ├── pdf_print_service.js │ │ │ │ ├── pdf_rendering_queue.js │ │ │ │ ├── pdf_scripting_manager.js │ │ │ │ ├── pdf_sidebar.js │ │ │ │ ├── pdf_sidebar_resizer.js │ │ │ │ ├── pdf_single_page_viewer.js │ │ │ │ ├── pdf_thumbnail_view.js │ │ │ │ ├── pdf_thumbnail_viewer.js │ │ │ │ ├── pdf_viewer.component.js │ │ │ │ ├── pdf_viewer.js │ │ │ │ ├── preferences.js │ │ │ │ ├── secondary_toolbar.js │ │ │ │ ├── struct_tree_layer_builder.js │ │ │ │ ├── text_layer_builder.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── ui_utils.js │ │ │ │ ├── view_history.js │ │ │ │ ├── viewer_compatibility.js │ │ │ │ └── xfa_layer_builder.js │ │ ├── package.json │ │ ├── types │ │ │ ├── display │ │ │ │ ├── annotation_layer.d.ts │ │ │ │ ├── annotation_storage.d.ts │ │ │ │ ├── api.d.ts │ │ │ │ ├── api_compatibility.d.ts │ │ │ │ ├── canvas.d.ts │ │ │ │ ├── content_disposition.d.ts │ │ │ │ ├── display_utils.d.ts │ │ │ │ ├── fetch_stream.d.ts │ │ │ │ ├── font_loader.d.ts │ │ │ │ ├── metadata.d.ts │ │ │ │ ├── network.d.ts │ │ │ │ ├── network_utils.d.ts │ │ │ │ ├── node_stream.d.ts │ │ │ │ ├── node_utils.d.ts │ │ │ │ ├── optional_content_config.d.ts │ │ │ │ ├── pattern_helper.d.ts │ │ │ │ ├── svg.d.ts │ │ │ │ ├── text_layer.d.ts │ │ │ │ ├── transport_stream.d.ts │ │ │ │ ├── worker_options.d.ts │ │ │ │ └── xfa_layer.d.ts │ │ │ ├── pdf.d.ts │ │ │ └── shared │ │ │ │ ├── compatibility.d.ts │ │ │ │ ├── is_node.d.ts │ │ │ │ ├── message_handler.d.ts │ │ │ │ ├── scripting_utils.d.ts │ │ │ │ └── util.d.ts │ │ ├── web │ │ │ ├── images │ │ │ │ ├── annotation-check.svg │ │ │ │ ├── annotation-comment.svg │ │ │ │ ├── annotation-help.svg │ │ │ │ ├── annotation-insert.svg │ │ │ │ ├── annotation-key.svg │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ ├── annotation-noicon.svg │ │ │ │ ├── annotation-note.svg │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ ├── loading-icon.gif │ │ │ │ └── shadow.png │ │ │ ├── pdf_viewer.css │ │ │ ├── pdf_viewer.js │ │ │ └── pdf_viewer.js.map │ │ └── webpack.js │ │ └── winjs │ │ ├── .bower.json │ │ ├── License.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ ├── ui-dark.css │ │ ├── ui-dark.min.css │ │ ├── ui-light.css │ │ └── ui-light.min.css │ │ ├── fonts │ │ └── Symbols.ttf │ │ └── js │ │ ├── WinJS.intellisense-setup.js │ │ ├── WinJS.intellisense.js │ │ ├── base.js │ │ ├── base.min.js │ │ ├── base.min.js.map │ │ ├── en-US │ │ └── ui.strings.js │ │ ├── ui.js │ │ ├── ui.min.js │ │ └── ui.min.js.map ├── ios │ ├── Graphics │ │ ├── Default-568h@2x.png │ │ ├── Reader-Button-H.png │ │ ├── Reader-Button-H@2x.png │ │ ├── Reader-Button-N.png │ │ ├── Reader-Button-N@2x.png │ │ ├── Reader-Email.png │ │ ├── Reader-Email@2x.png │ │ ├── Reader-Export.png │ │ ├── Reader-Export@2x.png │ │ ├── Reader-Mark-N.png │ │ ├── Reader-Mark-N@2x.png │ │ ├── Reader-Mark-Y.png │ │ ├── Reader-Mark-Y@2x.png │ │ ├── Reader-Print.png │ │ ├── Reader-Print@2x.png │ │ ├── Reader-Thumbs.png │ │ ├── Reader-Thumbs@2x.png │ │ ├── SDVReader-CoverPage.png │ │ ├── SDVReader-CoverPage@2x.png │ │ ├── SDVReader-DoublePage.png │ │ ├── SDVReader-DoublePage@2x.png │ │ ├── SDVReader-Outline.png │ │ ├── SDVReader-Outline@2x.png │ │ ├── SDVReader-SinglePage.png │ │ └── SDVReader-SinglePage@2x.png │ ├── sitewaerts │ │ ├── SitewaertsDocumentViewer.h │ │ └── SitewaertsDocumentViewer.m │ └── vfr │ │ ├── CGPDFDocument.h │ │ ├── CGPDFDocument.m │ │ ├── ReaderConstants.h │ │ ├── ReaderConstants.m │ │ ├── ReaderContentPage.h │ │ ├── ReaderContentPage.m │ │ ├── ReaderContentTile.h │ │ ├── ReaderContentTile.m │ │ ├── ReaderContentView.h │ │ ├── ReaderContentView.m │ │ ├── ReaderDocument.h │ │ ├── ReaderDocument.m │ │ ├── ReaderDocumentOutline.h │ │ ├── ReaderDocumentOutline.m │ │ ├── ReaderMainPagebar.h │ │ ├── ReaderMainPagebar.m │ │ ├── ReaderMainToolbar+SDVReaderMainToolbarPassThrough.h │ │ ├── ReaderMainToolbar+SDVReaderMainToolbarPassThrough.m │ │ ├── ReaderMainToolbar.h │ │ ├── ReaderMainToolbar.m │ │ ├── ReaderThumbCache.h │ │ ├── ReaderThumbCache.m │ │ ├── ReaderThumbFetch.h │ │ ├── ReaderThumbFetch.m │ │ ├── ReaderThumbQueue.h │ │ ├── ReaderThumbQueue.m │ │ ├── ReaderThumbRender.h │ │ ├── ReaderThumbRender.m │ │ ├── ReaderThumbRequest.h │ │ ├── ReaderThumbRequest.m │ │ ├── ReaderThumbView.h │ │ ├── ReaderThumbView.m │ │ ├── ReaderThumbsView.h │ │ ├── ReaderThumbsView.m │ │ ├── ReaderViewController+SDVReaderViewControllerPassThrough.h │ │ ├── ReaderViewController+SDVReaderViewControllerPassThrough.m │ │ ├── ReaderViewController.h │ │ ├── ReaderViewController.m │ │ ├── SDVReaderContentViewDoublePage.h │ │ ├── SDVReaderContentViewDoublePage.m │ │ ├── SDVReaderMainPagebar.h │ │ ├── SDVReaderMainPagebar.m │ │ ├── SDVReaderMainToolbar.h │ │ ├── SDVReaderMainToolbar.m │ │ ├── SDVReaderViewController.h │ │ ├── SDVReaderViewController.m │ │ ├── SDVThumbsMainToolbar.h │ │ ├── SDVThumbsMainToolbar.m │ │ ├── SDVThumbsViewController.h │ │ ├── SDVThumbsViewController.m │ │ ├── ThumbsMainToolbar+SDVThumbsMainToolbarPassThrough.h │ │ ├── ThumbsMainToolbar+SDVThumbsMainToolbarPassThrough.m │ │ ├── ThumbsMainToolbar.h │ │ ├── ThumbsMainToolbar.m │ │ ├── ThumbsViewController+SDVThumbsViewControllerPassThrough.h │ │ ├── ThumbsViewController+SDVThumbsViewControllerPassThrough.m │ │ ├── ThumbsViewController.h │ │ ├── ThumbsViewController.m │ │ ├── UIXToolbarView.h │ │ └── UIXToolbarView.m └── windows │ ├── sitewaertsdocumentviewer │ ├── css │ │ └── default.css │ ├── empty.html │ ├── intermediate.html │ ├── js │ │ ├── compat.js │ │ ├── pdfLibrary.js │ │ ├── pdfviewer.js │ │ └── worker.js │ └── viewer.html │ └── sitewaertsdocumentviewerProxy_native.js ├── update_dependencies.bat └── www └── sitewaertsdocumentviewer.js /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.iml 3 | /bower_components 4 | /node_modules 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/bower.json -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/android/screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/android/screenshot01.png -------------------------------------------------------------------------------- /doc/android/screenshot02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/android/screenshot02.png -------------------------------------------------------------------------------- /doc/ios/screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/ios/screenshot01.png -------------------------------------------------------------------------------- /doc/ios/screenshot02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/ios/screenshot02.png -------------------------------------------------------------------------------- /doc/ios/screenshot03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/ios/screenshot03.png -------------------------------------------------------------------------------- /doc/ios/screenshot04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/ios/screenshot04.png -------------------------------------------------------------------------------- /doc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/doc/todo.txt -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /npm_publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/npm_publish.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/res/xml/documentviewer_file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/android/res/xml/documentviewer_file_paths.xml -------------------------------------------------------------------------------- /src/common/js/angular-winjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular-winjs/.bower.json -------------------------------------------------------------------------------- /src/common/js/angular-winjs/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular-winjs/License.txt -------------------------------------------------------------------------------- /src/common/js/angular-winjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular-winjs/README.md -------------------------------------------------------------------------------- /src/common/js/angular-winjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular-winjs/bower.json -------------------------------------------------------------------------------- /src/common/js/angular-winjs/js/angular-winjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular-winjs/js/angular-winjs.js -------------------------------------------------------------------------------- /src/common/js/angular-winjs/tasks/check-bom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular-winjs/tasks/check-bom.js -------------------------------------------------------------------------------- /src/common/js/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/.bower.json -------------------------------------------------------------------------------- /src/common/js/angular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/LICENSE.md -------------------------------------------------------------------------------- /src/common/js/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/README.md -------------------------------------------------------------------------------- /src/common/js/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/angular-csp.css -------------------------------------------------------------------------------- /src/common/js/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/angular.js -------------------------------------------------------------------------------- /src/common/js/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/angular.min.js -------------------------------------------------------------------------------- /src/common/js/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /src/common/js/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/angular.min.js.map -------------------------------------------------------------------------------- /src/common/js/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/bower.json -------------------------------------------------------------------------------- /src/common/js/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/index.js -------------------------------------------------------------------------------- /src/common/js/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/angular/package.json -------------------------------------------------------------------------------- /src/common/js/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/.bower.json -------------------------------------------------------------------------------- /src/common/js/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/common/js/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/common/js/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/README.md -------------------------------------------------------------------------------- /src/common/js/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/bower.json -------------------------------------------------------------------------------- /src/common/js/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/core.js -------------------------------------------------------------------------------- /src/common/js/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/common/js/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/common/js/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/common/js/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /src/common/js/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /src/common/js/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /src/common/js/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /src/common/js/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /src/common/js/jquery/external/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/external/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /src/common/js/jquery/external/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/external/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /src/common/js/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/.eslintrc.json -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return { guid: Date.now() }; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/attributes.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/callbacks.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/access.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/camelCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/camelCase.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/init.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/nodeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/nodeName.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/ready-no-deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/ready-no-deferred.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/ready.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/readyException.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/stripAndCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/stripAndCollapse.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/support.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/toType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/toType.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/support.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/var/isHiddenWithinTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/var/isHiddenWithinTree.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/var/rboxStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/var/rboxStyle.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/data.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/data/Data.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/deferred.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/deprecated.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/dimensions.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/effects.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/event.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/event/alias.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/event/support.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/exports/global.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/jquery.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/offset.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/queue.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/selector-native.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/common/js/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/serialize.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/traversing.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/ObjectFunctionString.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/concat.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/document.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/isFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/isFunction.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/isWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/isWindow.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/push.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/rnothtmlwhite.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/slice.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/support.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/var/toString.js -------------------------------------------------------------------------------- /src/common/js/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/jquery/src/wrap.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/LICENSE -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/README.md -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/bower.json -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.sandbox.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.sandbox.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.sandbox.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.sandbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.sandbox.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.worker.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.worker.entry.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.worker.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.worker.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/build/pdf.worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/build/pdf.worker.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/LICENSE -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/V.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/image_decoders/pdf.image_decoders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/image_decoders/pdf.image_decoders.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/image_decoders/pdf.image_decoders.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/image_decoders/pdf.image_decoders.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/image_decoders/pdf.image_decoders.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/image_decoders/pdf.image_decoders.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.d.ts: -------------------------------------------------------------------------------- 1 | export * from "pdfjs-dist"; 2 | -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.sandbox.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.sandbox.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.sandbox.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.sandbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.sandbox.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.worker.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.worker.entry.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.worker.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.worker.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/build/pdf.worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/build/pdf.worker.min.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-check.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-comment.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-help.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-insert.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-key.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-noicon.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/annotation-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/annotation-note.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/loading-icon.gif -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/images/shadow.png -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/pdf_viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/pdf_viewer.css -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/pdf_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/pdf_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/legacy/web/pdf_viewer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/legacy/web/pdf_viewer.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/README.md -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/annotation.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/arithmetic_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/arithmetic_decoder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/ascii_85_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/ascii_85_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/ascii_hex_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/ascii_hex_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/base_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/base_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/bidi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/bidi.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/catalog.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/ccitt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/ccitt.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/ccitt_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/ccitt_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/cff_font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/cff_font.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/cff_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/cff_parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/charsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/charsets.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/chunked_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/chunked_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/cmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/cmap.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/colorspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/colorspace.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/core_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/core_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/crypto.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/decode_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/decode_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/decrypt_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/decrypt_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/default_appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/default_appearance.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/document.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/encodings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/encodings.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/evaluator.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/file_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/file_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/flate_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/flate_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/font_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/font_renderer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/fonts.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/fonts_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/fonts_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/function.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/glyphlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/glyphlist.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/image.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/image_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/image_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/jbig2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/jbig2.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/jbig2_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/jbig2_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/jpeg_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/jpeg_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/jpg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/jpg.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/jpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/jpx.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/jpx_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/jpx_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/lzw_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/lzw_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/metadata_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/metadata_parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/metrics.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/murmurhash3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/murmurhash3.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/name_number_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/name_number_tree.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/object_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/object_loader.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/opentype_file_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/opentype_file_builder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/operator_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/operator_list.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/pattern.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/pdf_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/pdf_manager.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/predictor_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/predictor_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/primitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/primitives.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/ps_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/ps_parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/run_length_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/run_length_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/standard_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/standard_fonts.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/struct_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/struct_tree.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/to_unicode_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/to_unicode_map.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/type1_font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/type1_font.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/type1_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/type1_parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/unicode.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/worker.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/worker_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/worker_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/writer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/bind.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/builder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/config.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/connection_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/connection_set.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/datasets.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/factory.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/formcalc_lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/formcalc_lexer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/formcalc_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/formcalc_parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/html_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/html_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/layout.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/locale_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/locale_set.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/namespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/namespaces.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/setup.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/signature.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/som.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/som.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/stylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/stylesheet.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/template.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/unknown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/unknown.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/xdp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/xdp.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/xfa_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/xfa_object.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xfa/xhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xfa/xhtml.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xml_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xml_parser.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/core/xref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/core/xref.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/annotation_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/annotation_layer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/annotation_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/annotation_storage.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/api.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/api_compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/api_compatibility.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/canvas.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/content_disposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/content_disposition.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/display_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/display_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/fetch_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/fetch_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/font_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/font_loader.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/metadata.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/network.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/network_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/network_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/node_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/node_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/node_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/node_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/optional_content_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/optional_content_config.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/pattern_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/pattern_helper.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/svg.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/text_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/text_layer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/transport_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/transport_stream.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/worker_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/worker_options.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/display/xfa_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/display/xfa_layer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/examples/node/domstubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/examples/node/domstubs.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/pdf.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/pdf.sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/pdf.sandbox.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/pdf.worker.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/shared/compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/shared/compatibility.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/shared/is_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/shared/is_node.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/shared/message_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/shared/message_handler.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/shared/scripting_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/shared/scripting_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/shared/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/shared/util.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/annotation_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/annotation_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/annotation_storage_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/annotation_storage_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/api_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/api_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/bidi_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/bidi_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/cff_parser_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/cff_parser_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/clitests_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/clitests_helper.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/cmap_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/cmap_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/colorspace_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/colorspace_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/core_utils_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/core_utils_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/crypto_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/crypto_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/custom_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/custom_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/default_appearance_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/default_appearance_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/display_svg_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/display_svg_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/display_utils_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/display_utils_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/document_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/document_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/encodings_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/encodings_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/evaluator_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/evaluator_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/fetch_stream_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/fetch_stream_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/function_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/function_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/jasmine-boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/jasmine-boot.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/message_handler_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/message_handler_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/metadata_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/metadata_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/murmurhash3_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/murmurhash3_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/network_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/network_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/network_utils_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/network_utils_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/node_stream_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/node_stream_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/parser_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/parser_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/pdf_find_utils_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/pdf_find_utils_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/pdf_history_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/pdf_history_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/primitives_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/primitives_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/scripting_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/scripting_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/stream_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/stream_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/struct_tree_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/struct_tree_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/test_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/test_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/testreporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/testreporter.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/type1_parser_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/type1_parser_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/ui_utils_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/ui_utils_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/unicode_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/unicode_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/util_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/util_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/writer_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/writer_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/xfa_formcalc_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/xfa_formcalc_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/xfa_parser_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/xfa_parser_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/xfa_tohtml_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/xfa_tohtml_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/test/unit/xml_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/test/unit/xml_spec.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/annotation_layer_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/annotation_layer_builder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/app.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/app_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/app_options.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/base_tree_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/base_tree_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/base_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/base_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/chromecom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/chromecom.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/debugger.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/download_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/download_manager.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/firefox_print_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/firefox_print_service.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/firefoxcom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/firefoxcom.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/generic_scripting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/generic_scripting.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/genericcom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/genericcom.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/genericl10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/genericl10n.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/grab_to_pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/grab_to_pan.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/interfaces.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/l10n_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/l10n_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/overlay_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/overlay_manager.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/password_prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/password_prompt.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_attachment_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_attachment_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_cursor_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_cursor_tools.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_document_properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_document_properties.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_find_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_find_bar.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_find_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_find_controller.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_find_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_find_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_history.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_layer_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_layer_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_link_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_link_service.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_outline_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_outline_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_page_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_page_view.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_presentation_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_presentation_mode.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_print_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_print_service.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_rendering_queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_rendering_queue.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_scripting_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_scripting_manager.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_sidebar.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_sidebar_resizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_sidebar_resizer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_single_page_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_single_page_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_thumbnail_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_thumbnail_view.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_thumbnail_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_thumbnail_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_viewer.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_viewer.component.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/pdf_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/pdf_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/preferences.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/secondary_toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/secondary_toolbar.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/struct_tree_layer_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/struct_tree_layer_builder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/text_layer_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/text_layer_builder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/toolbar.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/ui_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/ui_utils.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/view_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/view_history.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/viewer_compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/viewer_compatibility.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/lib/web/xfa_layer_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/lib/web/xfa_layer_builder.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/package.json -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/annotation_layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/annotation_layer.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/annotation_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/annotation_storage.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/api.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/api_compatibility.d.ts: -------------------------------------------------------------------------------- 1 | export const apiCompatibilityParams: any; 2 | -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/canvas.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/content_disposition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/content_disposition.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/display_utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/display_utils.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/fetch_stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/fetch_stream.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/font_loader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/font_loader.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/metadata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/metadata.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/network.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/network.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/network_utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/network_utils.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/node_stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/node_stream.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/node_utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/node_utils.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/pattern_helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/pattern_helper.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/svg.d.ts: -------------------------------------------------------------------------------- 1 | /** @type {any} */ 2 | export let SVGGraphics: any; 3 | -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/text_layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/text_layer.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/transport_stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/transport_stream.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/worker_options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/worker_options.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/display/xfa_layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/display/xfa_layer.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/pdf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/pdf.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/shared/compatibility.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/shared/is_node.d.ts: -------------------------------------------------------------------------------- 1 | export const isNodeJS: boolean; 2 | -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/shared/message_handler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/shared/message_handler.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/shared/scripting_utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/shared/scripting_utils.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/types/shared/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/types/shared/util.d.ts -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-check.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-comment.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-help.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-insert.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-key.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-newparagraph.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-noicon.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-note.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/annotation-paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/annotation-paragraph.svg -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/loading-icon.gif -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/images/shadow.png -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/pdf_viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/pdf_viewer.css -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/pdf_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/pdf_viewer.js -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/web/pdf_viewer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/web/pdf_viewer.js.map -------------------------------------------------------------------------------- /src/common/js/pdfjs-dist/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/pdfjs-dist/webpack.js -------------------------------------------------------------------------------- /src/common/js/winjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/.bower.json -------------------------------------------------------------------------------- /src/common/js/winjs/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/License.txt -------------------------------------------------------------------------------- /src/common/js/winjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/README.md -------------------------------------------------------------------------------- /src/common/js/winjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/bower.json -------------------------------------------------------------------------------- /src/common/js/winjs/css/ui-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/css/ui-dark.css -------------------------------------------------------------------------------- /src/common/js/winjs/css/ui-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/css/ui-dark.min.css -------------------------------------------------------------------------------- /src/common/js/winjs/css/ui-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/css/ui-light.css -------------------------------------------------------------------------------- /src/common/js/winjs/css/ui-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/css/ui-light.min.css -------------------------------------------------------------------------------- /src/common/js/winjs/fonts/Symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/fonts/Symbols.ttf -------------------------------------------------------------------------------- /src/common/js/winjs/js/WinJS.intellisense-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/WinJS.intellisense-setup.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/WinJS.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/WinJS.intellisense.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/base.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/base.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/base.min.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/base.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/base.min.js.map -------------------------------------------------------------------------------- /src/common/js/winjs/js/en-US/ui.strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/en-US/ui.strings.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/ui.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/ui.min.js -------------------------------------------------------------------------------- /src/common/js/winjs/js/ui.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/common/js/winjs/js/ui.min.js.map -------------------------------------------------------------------------------- /src/ios/Graphics/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Default-568h@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Button-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Button-H.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Button-H@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Button-H@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Button-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Button-N.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Button-N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Button-N@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Email.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Email@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Export.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Export@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Mark-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Mark-N.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Mark-N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Mark-N@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Mark-Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Mark-Y.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Mark-Y@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Mark-Y@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Print.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Print@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Thumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Thumbs.png -------------------------------------------------------------------------------- /src/ios/Graphics/Reader-Thumbs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/Reader-Thumbs@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-CoverPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-CoverPage.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-CoverPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-CoverPage@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-DoublePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-DoublePage.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-DoublePage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-DoublePage@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-Outline.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-Outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-Outline@2x.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-SinglePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-SinglePage.png -------------------------------------------------------------------------------- /src/ios/Graphics/SDVReader-SinglePage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/Graphics/SDVReader-SinglePage@2x.png -------------------------------------------------------------------------------- /src/ios/sitewaerts/SitewaertsDocumentViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/sitewaerts/SitewaertsDocumentViewer.h -------------------------------------------------------------------------------- /src/ios/sitewaerts/SitewaertsDocumentViewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/sitewaerts/SitewaertsDocumentViewer.m -------------------------------------------------------------------------------- /src/ios/vfr/CGPDFDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/CGPDFDocument.h -------------------------------------------------------------------------------- /src/ios/vfr/CGPDFDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/CGPDFDocument.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderConstants.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderConstants.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderContentPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderContentPage.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderContentPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderContentPage.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderContentTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderContentTile.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderContentTile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderContentTile.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderContentView.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderContentView.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderDocument.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderDocument.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderDocumentOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderDocumentOutline.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderDocumentOutline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderDocumentOutline.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderMainPagebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderMainPagebar.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderMainPagebar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderMainPagebar.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderMainToolbar+SDVReaderMainToolbarPassThrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderMainToolbar+SDVReaderMainToolbarPassThrough.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderMainToolbar+SDVReaderMainToolbarPassThrough.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderMainToolbar+SDVReaderMainToolbarPassThrough.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderMainToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderMainToolbar.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderMainToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderMainToolbar.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbCache.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbCache.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbFetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbFetch.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbFetch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbFetch.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbQueue.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbQueue.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbRender.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbRender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbRender.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbRequest.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbRequest.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbView.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbView.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbsView.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderThumbsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderThumbsView.m -------------------------------------------------------------------------------- /src/ios/vfr/ReaderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderViewController.h -------------------------------------------------------------------------------- /src/ios/vfr/ReaderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ReaderViewController.m -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderContentViewDoublePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderContentViewDoublePage.h -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderContentViewDoublePage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderContentViewDoublePage.m -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderMainPagebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderMainPagebar.h -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderMainPagebar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderMainPagebar.m -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderMainToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderMainToolbar.h -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderMainToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderMainToolbar.m -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderViewController.h -------------------------------------------------------------------------------- /src/ios/vfr/SDVReaderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVReaderViewController.m -------------------------------------------------------------------------------- /src/ios/vfr/SDVThumbsMainToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVThumbsMainToolbar.h -------------------------------------------------------------------------------- /src/ios/vfr/SDVThumbsMainToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVThumbsMainToolbar.m -------------------------------------------------------------------------------- /src/ios/vfr/SDVThumbsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVThumbsViewController.h -------------------------------------------------------------------------------- /src/ios/vfr/SDVThumbsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/SDVThumbsViewController.m -------------------------------------------------------------------------------- /src/ios/vfr/ThumbsMainToolbar+SDVThumbsMainToolbarPassThrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ThumbsMainToolbar+SDVThumbsMainToolbarPassThrough.h -------------------------------------------------------------------------------- /src/ios/vfr/ThumbsMainToolbar+SDVThumbsMainToolbarPassThrough.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ThumbsMainToolbar+SDVThumbsMainToolbarPassThrough.m -------------------------------------------------------------------------------- /src/ios/vfr/ThumbsMainToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ThumbsMainToolbar.h -------------------------------------------------------------------------------- /src/ios/vfr/ThumbsMainToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ThumbsMainToolbar.m -------------------------------------------------------------------------------- /src/ios/vfr/ThumbsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ThumbsViewController.h -------------------------------------------------------------------------------- /src/ios/vfr/ThumbsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/ThumbsViewController.m -------------------------------------------------------------------------------- /src/ios/vfr/UIXToolbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/UIXToolbarView.h -------------------------------------------------------------------------------- /src/ios/vfr/UIXToolbarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/ios/vfr/UIXToolbarView.m -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/css/default.css -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/empty.html -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/intermediate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/intermediate.html -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/js/compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/js/compat.js -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/js/pdfLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/js/pdfLibrary.js -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/js/pdfviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/js/pdfviewer.js -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/js/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/js/worker.js -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewer/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewer/viewer.html -------------------------------------------------------------------------------- /src/windows/sitewaertsdocumentviewerProxy_native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/src/windows/sitewaertsdocumentviewerProxy_native.js -------------------------------------------------------------------------------- /update_dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/update_dependencies.bat -------------------------------------------------------------------------------- /www/sitewaertsdocumentviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitewaerts/cordova-plugin-document-viewer/HEAD/www/sitewaertsdocumentviewer.js --------------------------------------------------------------------------------