Merge pull request #1 from chrigi/patch-1

Remove arg0 from isDeviceRooted
This commit is contained in:
trykovyura
2015-08-04 14:17:17 +03:00
+2 -2
View File
@@ -1,5 +1,5 @@
var exec = require('cordova/exec');
exports.isDeviceRooted = function(arg0, success, error) {
exec(success, error, "RootDetection", "isDeviceRooted", [arg0]);
exports.isDeviceRooted = function(success, error) {
exec(success, error, "RootDetection", "isDeviceRooted", []);
};