🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

ionic-plugin-deeplinks

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ionic-plugin-deeplinks - npm Package Compare versions

Comparing version

to
1.0.11

.npmInstalled

8

package.json
{
"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