├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── Full Window Embed Mode ├── README.md ├── index.html └── index.js ├── In-Line Embed Mode ├── README.md ├── index.html └── index.js ├── LICENSE.md ├── Lightbox Embed Mode ├── README.md ├── index.html └── index.js ├── More Samples ├── Analytics │ ├── Adobe Analytics │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ ├── Google Analytics │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ └── README.md ├── Angular Samples │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── samples │ │ │ │ ├── capture-view-sdk-events │ │ │ │ ├── capture-view-sdk-events.component.html │ │ │ │ └── capture-view-sdk-events.component.ts │ │ │ │ ├── embed-modes │ │ │ │ ├── full-window │ │ │ │ │ ├── full-window.component.html │ │ │ │ │ └── full-window.component.ts │ │ │ │ ├── in-line │ │ │ │ │ ├── in-line.component.css │ │ │ │ │ ├── in-line.component.html │ │ │ │ │ └── in-line.component.ts │ │ │ │ ├── lightbox │ │ │ │ │ ├── lightbox.component.css │ │ │ │ │ ├── lightbox.component.html │ │ │ │ │ └── lightbox.component.ts │ │ │ │ └── sized-container │ │ │ │ │ ├── sized-container.component.css │ │ │ │ │ ├── sized-container.component.html │ │ │ │ │ └── sized-container.component.ts │ │ │ │ ├── local-pdf-file-preview │ │ │ │ ├── local-pdf-file-preview.component.css │ │ │ │ ├── local-pdf-file-preview.component.html │ │ │ │ └── local-pdf-file-preview.component.ts │ │ │ │ ├── pdf-annotation-apis │ │ │ │ ├── capture-events │ │ │ │ │ ├── capture-events.component.html │ │ │ │ │ └── capture-events.component.ts │ │ │ │ ├── crud-apis │ │ │ │ │ ├── crud-apis.component.html │ │ │ │ │ └── crud-apis.component.ts │ │ │ │ ├── handling-in-pdf │ │ │ │ │ ├── handling-in-pdf.component.html │ │ │ │ │ └── handling-in-pdf.component.ts │ │ │ │ ├── sample-annotation-list.ts │ │ │ │ └── ui-configurations │ │ │ │ │ ├── custom-rhp │ │ │ │ │ ├── custom-rhp.component.html │ │ │ │ │ ├── custom-rhp.component.ts │ │ │ │ │ └── list-item │ │ │ │ │ │ ├── list-item.component.html │ │ │ │ │ │ └── list-item.component.ts │ │ │ │ │ ├── ui-configurations.component.css │ │ │ │ │ ├── ui-configurations.component.html │ │ │ │ │ └── ui-configurations.component.ts │ │ │ │ ├── pdf-annotation-tools │ │ │ │ ├── pdf-annotation-tools.component.html │ │ │ │ └── pdf-annotation-tools.component.ts │ │ │ │ ├── view-sdk.service.ts │ │ │ │ └── viewer-customization │ │ │ │ ├── viewer-customization.component.html │ │ │ │ └── viewer-customization.component.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── polyfills.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tslint.json ├── Capture PDF Embed API Events │ ├── README.md │ ├── index.html │ └── index.js ├── Handle Search Engine Indexing │ ├── Auto-click PDF Link │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ ├── Full Window │ │ ├── README.md │ │ ├── index.html │ │ ├── viewer.html │ │ └── viewer.js │ ├── In Line PDF │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ ├── Lightbox Embed Mode │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ └── README.md ├── Linearization │ ├── Bodea Brochure - Linearized.pdf │ ├── README.md │ ├── index.html │ └── index.js ├── PDF Annotations APIs │ ├── Annotation Data Samples │ │ ├── README.md │ │ ├── freetext.json │ │ ├── highlight.json │ │ ├── note.json │ │ ├── reply.json │ │ ├── shape.json │ │ ├── strikeout.json │ │ └── underline.json │ ├── CRUD APIs │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ ├── Capture Events │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ ├── Handling of Annotations in PDF │ │ ├── README.md │ │ ├── index.html │ │ └── index.js │ ├── README.md │ ├── UI Configurations │ │ ├── README.md │ │ ├── images │ │ │ ├── tool_add_text.svg │ │ │ ├── tool_drawing.svg │ │ │ ├── tool_eraser.svg │ │ │ ├── tool_highlight.svg │ │ │ ├── tool_stickynote.svg │ │ │ ├── tool_strikethrough.svg │ │ │ └── tool_underline.svg │ │ ├── index.html │ │ ├── index.js │ │ └── style.css │ └── annotationList.js ├── PDF Annotations │ ├── README.md │ ├── index.html │ └── index.js ├── React Samples │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── public │ │ └── index.html │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── index.js │ │ └── samples │ │ ├── CaptureViewSDKEvents.js │ │ ├── Embed Modes │ │ ├── FullWindow.js │ │ ├── InLine.js │ │ ├── Lightbox.js │ │ └── SizedContainer.js │ │ ├── LocalPDFFilePreview.js │ │ ├── PDF Annotation APIs │ │ ├── CRUDAPIs.js │ │ ├── CaptureEvents.js │ │ ├── HandlingAnnotationsInPDF.js │ │ ├── Sample Annotation List │ │ │ └── annotationList.js │ │ └── UIConfigurations │ │ │ ├── CustomRHP.js │ │ │ ├── CustomUI.css │ │ │ └── UIConfigurations.js │ │ ├── PDFAnnotationTools.js │ │ ├── ViewSDKClient.js │ │ └── ViewerCustomization.js ├── Save User Preferences │ ├── README.md │ ├── index.html │ └── index.js ├── Viewer APIs │ ├── Attachment APIs │ │ ├── README.md │ │ ├── index.html │ │ ├── index.js │ │ └── style.css │ ├── Bookmark APIs │ │ ├── README.md │ │ ├── index.html │ │ ├── index.js │ │ └── style.css │ ├── README.md │ └── Search and Zoom APIs │ │ ├── README.md │ │ ├── images │ │ ├── chevronnext.svg │ │ ├── chevronprevious.svg │ │ ├── zoom_in.svg │ │ └── zoom_out.svg │ │ ├── index.html │ │ ├── index.js │ │ └── style.css ├── Viewer Customization │ ├── README.md │ ├── index.html │ └── index.js └── Work with Local File │ ├── README.md │ ├── index.html │ └── index.js ├── README.md └── Sized Container Embed Mode ├── README.md ├── index.html └── index.js /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Authors ordered by first contribution 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Full Window Embed Mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Full Window Embed Mode/README.md -------------------------------------------------------------------------------- /Full Window Embed Mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Full Window Embed Mode/index.html -------------------------------------------------------------------------------- /Full Window Embed Mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Full Window Embed Mode/index.js -------------------------------------------------------------------------------- /In-Line Embed Mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/In-Line Embed Mode/README.md -------------------------------------------------------------------------------- /In-Line Embed Mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/In-Line Embed Mode/index.html -------------------------------------------------------------------------------- /In-Line Embed Mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/In-Line Embed Mode/index.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lightbox Embed Mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Lightbox Embed Mode/README.md -------------------------------------------------------------------------------- /Lightbox Embed Mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Lightbox Embed Mode/index.html -------------------------------------------------------------------------------- /Lightbox Embed Mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Lightbox Embed Mode/index.js -------------------------------------------------------------------------------- /More Samples/Analytics/Adobe Analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/Adobe Analytics/README.md -------------------------------------------------------------------------------- /More Samples/Analytics/Adobe Analytics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/Adobe Analytics/index.html -------------------------------------------------------------------------------- /More Samples/Analytics/Adobe Analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/Adobe Analytics/index.js -------------------------------------------------------------------------------- /More Samples/Analytics/Google Analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/Google Analytics/README.md -------------------------------------------------------------------------------- /More Samples/Analytics/Google Analytics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/Google Analytics/index.html -------------------------------------------------------------------------------- /More Samples/Analytics/Google Analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/Google Analytics/index.js -------------------------------------------------------------------------------- /More Samples/Analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Analytics/README.md -------------------------------------------------------------------------------- /More Samples/Angular Samples/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /More Samples/Angular Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/README.md -------------------------------------------------------------------------------- /More Samples/Angular Samples/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/angular.json -------------------------------------------------------------------------------- /More Samples/Angular Samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/package.json -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/app.component.css -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/app.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/app.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/app.module.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/capture-view-sdk-events/capture-view-sdk-events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/capture-view-sdk-events/capture-view-sdk-events.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/capture-view-sdk-events/capture-view-sdk-events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/capture-view-sdk-events/capture-view-sdk-events.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/full-window/full-window.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/full-window/full-window.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/full-window/full-window.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/full-window/full-window.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/in-line/in-line.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/in-line/in-line.component.css -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/in-line/in-line.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/in-line/in-line.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/in-line/in-line.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/in-line/in-line.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/lightbox/lightbox.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/lightbox/lightbox.component.css -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/lightbox/lightbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/lightbox/lightbox.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/lightbox/lightbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/lightbox/lightbox.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/sized-container/sized-container.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/sized-container/sized-container.component.css -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/sized-container/sized-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/sized-container/sized-container.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/embed-modes/sized-container/sized-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/embed-modes/sized-container/sized-container.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/local-pdf-file-preview/local-pdf-file-preview.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/local-pdf-file-preview/local-pdf-file-preview.component.css -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/local-pdf-file-preview/local-pdf-file-preview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/local-pdf-file-preview/local-pdf-file-preview.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/local-pdf-file-preview/local-pdf-file-preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/local-pdf-file-preview/local-pdf-file-preview.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/capture-events/capture-events.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/capture-events/capture-events.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/capture-events/capture-events.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/capture-events/capture-events.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/crud-apis/crud-apis.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/crud-apis/crud-apis.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/crud-apis/crud-apis.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/crud-apis/crud-apis.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/handling-in-pdf/handling-in-pdf.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/handling-in-pdf/handling-in-pdf.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/handling-in-pdf/handling-in-pdf.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/handling-in-pdf/handling-in-pdf.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/sample-annotation-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/sample-annotation-list.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/custom-rhp.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/custom-rhp.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/custom-rhp.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/custom-rhp.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/list-item/list-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/list-item/list-item.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/list-item/list-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/custom-rhp/list-item/list-item.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/ui-configurations.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/ui-configurations.component.css -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/ui-configurations.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/ui-configurations.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/ui-configurations.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-apis/ui-configurations/ui-configurations.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-tools/pdf-annotation-tools.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-tools/pdf-annotation-tools.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/pdf-annotation-tools/pdf-annotation-tools.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/pdf-annotation-tools/pdf-annotation-tools.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/view-sdk.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/view-sdk.service.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/viewer-customization/viewer-customization.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/viewer-customization/viewer-customization.component.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/app/samples/viewer-customization/viewer-customization.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/app/samples/viewer-customization/viewer-customization.component.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/index.html -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/main.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/src/polyfills.ts -------------------------------------------------------------------------------- /More Samples/Angular Samples/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/tsconfig.app.json -------------------------------------------------------------------------------- /More Samples/Angular Samples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/tsconfig.json -------------------------------------------------------------------------------- /More Samples/Angular Samples/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Angular Samples/tslint.json -------------------------------------------------------------------------------- /More Samples/Capture PDF Embed API Events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Capture PDF Embed API Events/README.md -------------------------------------------------------------------------------- /More Samples/Capture PDF Embed API Events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Capture PDF Embed API Events/index.html -------------------------------------------------------------------------------- /More Samples/Capture PDF Embed API Events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Capture PDF Embed API Events/index.js -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Auto-click PDF Link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Auto-click PDF Link/README.md -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Auto-click PDF Link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Auto-click PDF Link/index.html -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Auto-click PDF Link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Auto-click PDF Link/index.js -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Full Window/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Full Window/README.md -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Full Window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Full Window/index.html -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Full Window/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Full Window/viewer.html -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Full Window/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Full Window/viewer.js -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/In Line PDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/In Line PDF/README.md -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/In Line PDF/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/In Line PDF/index.html -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/In Line PDF/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/In Line PDF/index.js -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Lightbox Embed Mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Lightbox Embed Mode/README.md -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Lightbox Embed Mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Lightbox Embed Mode/index.html -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/Lightbox Embed Mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/Lightbox Embed Mode/index.js -------------------------------------------------------------------------------- /More Samples/Handle Search Engine Indexing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Handle Search Engine Indexing/README.md -------------------------------------------------------------------------------- /More Samples/Linearization/Bodea Brochure - Linearized.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Linearization/Bodea Brochure - Linearized.pdf -------------------------------------------------------------------------------- /More Samples/Linearization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Linearization/README.md -------------------------------------------------------------------------------- /More Samples/Linearization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Linearization/index.html -------------------------------------------------------------------------------- /More Samples/Linearization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Linearization/index.js -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/freetext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/freetext.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/highlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/highlight.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/note.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/reply.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/shape.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/strikeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/strikeout.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Annotation Data Samples/underline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Annotation Data Samples/underline.json -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/CRUD APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/CRUD APIs/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/CRUD APIs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/CRUD APIs/index.html -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/CRUD APIs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/CRUD APIs/index.js -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Capture Events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Capture Events/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Capture Events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Capture Events/index.html -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Capture Events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Capture Events/index.js -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Handling of Annotations in PDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Handling of Annotations in PDF/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Handling of Annotations in PDF/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Handling of Annotations in PDF/index.html -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/Handling of Annotations in PDF/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/Handling of Annotations in PDF/index.js -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_add_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_add_text.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_drawing.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_eraser.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_highlight.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_stickynote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_stickynote.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_strikethrough.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/images/tool_underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/images/tool_underline.svg -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/index.html -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/index.js -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/UI Configurations/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/UI Configurations/style.css -------------------------------------------------------------------------------- /More Samples/PDF Annotations APIs/annotationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations APIs/annotationList.js -------------------------------------------------------------------------------- /More Samples/PDF Annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations/README.md -------------------------------------------------------------------------------- /More Samples/PDF Annotations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations/index.html -------------------------------------------------------------------------------- /More Samples/PDF Annotations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/PDF Annotations/index.js -------------------------------------------------------------------------------- /More Samples/React Samples/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /More Samples/React Samples/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /More Samples/React Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/README.md -------------------------------------------------------------------------------- /More Samples/React Samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/package.json -------------------------------------------------------------------------------- /More Samples/React Samples/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/public/index.html -------------------------------------------------------------------------------- /More Samples/React Samples/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/App.css -------------------------------------------------------------------------------- /More Samples/React Samples/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/App.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/index.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/CaptureViewSDKEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/CaptureViewSDKEvents.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/Embed Modes/FullWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/Embed Modes/FullWindow.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/Embed Modes/InLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/Embed Modes/InLine.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/Embed Modes/Lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/Embed Modes/Lightbox.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/Embed Modes/SizedContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/Embed Modes/SizedContainer.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/LocalPDFFilePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/LocalPDFFilePreview.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/CRUDAPIs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/CRUDAPIs.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/CaptureEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/CaptureEvents.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/HandlingAnnotationsInPDF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/HandlingAnnotationsInPDF.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/Sample Annotation List/annotationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/Sample Annotation List/annotationList.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/UIConfigurations/CustomRHP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/UIConfigurations/CustomRHP.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/UIConfigurations/CustomUI.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/UIConfigurations/CustomUI.css -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDF Annotation APIs/UIConfigurations/UIConfigurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDF Annotation APIs/UIConfigurations/UIConfigurations.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/PDFAnnotationTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/PDFAnnotationTools.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/ViewSDKClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/ViewSDKClient.js -------------------------------------------------------------------------------- /More Samples/React Samples/src/samples/ViewerCustomization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/React Samples/src/samples/ViewerCustomization.js -------------------------------------------------------------------------------- /More Samples/Save User Preferences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Save User Preferences/README.md -------------------------------------------------------------------------------- /More Samples/Save User Preferences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Save User Preferences/index.html -------------------------------------------------------------------------------- /More Samples/Save User Preferences/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Save User Preferences/index.js -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Attachment APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Attachment APIs/README.md -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Attachment APIs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Attachment APIs/index.html -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Attachment APIs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Attachment APIs/index.js -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Attachment APIs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Attachment APIs/style.css -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Bookmark APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Bookmark APIs/README.md -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Bookmark APIs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Bookmark APIs/index.html -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Bookmark APIs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Bookmark APIs/index.js -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Bookmark APIs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Bookmark APIs/style.css -------------------------------------------------------------------------------- /More Samples/Viewer APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/README.md -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/README.md -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/images/chevronnext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/images/chevronnext.svg -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/images/chevronprevious.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/images/chevronprevious.svg -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/images/zoom_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/images/zoom_in.svg -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/images/zoom_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/images/zoom_out.svg -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/index.html -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/index.js -------------------------------------------------------------------------------- /More Samples/Viewer APIs/Search and Zoom APIs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer APIs/Search and Zoom APIs/style.css -------------------------------------------------------------------------------- /More Samples/Viewer Customization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer Customization/README.md -------------------------------------------------------------------------------- /More Samples/Viewer Customization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer Customization/index.html -------------------------------------------------------------------------------- /More Samples/Viewer Customization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Viewer Customization/index.js -------------------------------------------------------------------------------- /More Samples/Work with Local File/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Work with Local File/README.md -------------------------------------------------------------------------------- /More Samples/Work with Local File/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Work with Local File/index.html -------------------------------------------------------------------------------- /More Samples/Work with Local File/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/More Samples/Work with Local File/index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/README.md -------------------------------------------------------------------------------- /Sized Container Embed Mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Sized Container Embed Mode/README.md -------------------------------------------------------------------------------- /Sized Container Embed Mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Sized Container Embed Mode/index.html -------------------------------------------------------------------------------- /Sized Container Embed Mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/pdf-embed-api-samples/HEAD/Sized Container Embed Mode/index.js --------------------------------------------------------------------------------