New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-oauth2

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-oauth2 - npm Package Compare versions

Comparing version 2.4.3 to 2.4.4

2

package.json
{
"name": "nativescript-oauth2",
"version": "2.4.3",
"version": "2.4.4",
"description": "OAuth 2 generic authorization plugin for NativeScript that doesn't install third party native libraries",

@@ -5,0 +5,0 @@ "main": "oauth",

@@ -24,3 +24,2 @@ "use strict";

var fullUrl = this.loginController.preLogoutSetup(frame, urlScheme, completion);
console.dir(fullUrl);
this.openUrlWithParametersCompletion(fullUrl, frame);

@@ -31,3 +30,12 @@ };

this.safariViewController.delegate = this;
frame.ios.controller.presentViewControllerAnimatedCompletion(this.safariViewController, true, null);
if (frame.parent) {
var topmostParent = frame.parent;
while (topmostParent.parent) {
topmostParent = topmostParent.parent;
}
topmostParent.viewController.presentViewControllerAnimatedCompletion(this.safariViewController, true, null);
}
else {
frame.ios.controller.presentViewControllerAnimatedCompletion(this.safariViewController, true, null);
}
};

@@ -34,0 +42,0 @@ TnsOAuthLoginNativeViewController.prototype.resumeWithUrl = function (url) {

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