From 349402e35c4cd39323cb84d1988a0ff506f1534a Mon Sep 17 00:00:00 2001 From: Carlos Delgado Date: Thu, 9 Jun 2016 16:10:08 +0200 Subject: [PATCH] Fix --- www/ourcodeworldpreventscreenshots.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/ourcodeworldpreventscreenshots.js b/www/ourcodeworldpreventscreenshots.js index 7b3ccf7..51d7a2c 100644 --- a/www/ourcodeworldpreventscreenshots.js +++ b/www/ourcodeworldpreventscreenshots.js @@ -6,13 +6,13 @@ module.exports = { console.info(data); }, function(err){ console.error(err); - }, "OurCodeWorldpreventscreenshots", "enable", [_settings]); + }, "OurCodeWorldpreventscreenshots", "enable", []); }, disableScreenshots: function(){ cordova.exec(function(data){ console.info(data); }, function(err){ console.error(err); - }, "OurCodeWorldpreventscreenshots", "disable", [_settings]); + }, "OurCodeWorldpreventscreenshots", "disable", []); } };