ionic-plugin-deeplinks
Advanced tools
Comparing version
{ | ||
"name": "ionic-plugin-deeplinks", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"cordova": { | ||
@@ -25,4 +25,10 @@ "id": "ionic-plugin-deeplinks", | ||
], | ||
"dependencies": { | ||
"mkpath": ">=1.0.0", | ||
"xml2js": ">=0.4", | ||
"node-version-compare": ">=1.0.1", | ||
"plist": ">=1.2.0" | ||
}, | ||
"author": "Max Lynch <max@ionic.io>", | ||
"license": "MIT" | ||
} |
@@ -75,4 +75,18 @@ | ||
}, | ||
routeWithNavController: function(navController, paths, success, error) { | ||
routeWithNavController: function(navController, paths, options, success, error) { | ||
var self = this; | ||
var defaultOptions = { | ||
root: false | ||
}; | ||
if(typeof options !== 'function') { | ||
options = extend(defaultOptions, options); | ||
} else { | ||
success = options; | ||
error = success; | ||
options = defaultOptions; | ||
} | ||
this.route(paths, function(match) { | ||
@@ -82,3 +96,7 @@ | ||
setTimeout(function() { | ||
navController.push(match.$route, match.$args); | ||
if(options.root === true) { | ||
navController.setRoot(match.$route, match.$args); | ||
} else { | ||
navController.push(match.$route, match.$args); | ||
} | ||
}, self.NAVIGATION_DELAY); | ||
@@ -85,0 +103,0 @@ |
Sorry, the diff of this file is not supported yet
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
53842
78.37%19
90%1055
184.37%4
Infinity%5
400%1
Infinity%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added