Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pspdfkit-cordova

Package Overview
Dependencies
Maintainers
3
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pspdfkit-cordova - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

2

package.json
{
"name": "pspdfkit-cordova",
"version": "1.0.7",
"version": "1.0.8",
"description": "PSPDFKit Cordova Plugin for Android and iOS",

@@ -5,0 +5,0 @@ "cordova": {

@@ -70,3 +70,3 @@ /**

console.log("Opening document " + asset);
window.PSPDFKit.showDocumentFromAssets(
window.PSPDFKit.presentFromAssets(
asset,

@@ -83,2 +83,18 @@ options,

createActionButton("Open Image ocument", function() {
var asset = "www/image.jpg";
var options = {};
console.log("Opening image document " + asset);
window.PSPDFKit.presentFromAssets(
asset,
options,
function() {
console.log("Document was successfully loaded.");
},
function(error) {
console.log("Error while loading the document:" + error);
}
);
});
createActionButton("Vertical continuous scrolling", function() {

@@ -99,3 +115,3 @@ var asset = "www/Guide.pdf";

window.PSPDFKit.showDocumentFromAssets(
window.PSPDFKit.presentFromAssets(
asset,

@@ -125,3 +141,3 @@ options,

window.PSPDFKit.showDocumentFromAssets(
window.PSPDFKit.presentFromAssets(
asset,

@@ -128,0 +144,0 @@ options,

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc