Skip to content

Commit

Permalink
Merge pull request #42 from kunder-lab/hotfix-encrypt
Browse files Browse the repository at this point in the history
Se modifica hide para funcionamiento sin parametros
  • Loading branch information
rmendozah authored May 31, 2018
2 parents ffc59e2 + 88a6ef6 commit e09dcc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/webViewPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = (function() {
};

var _hide = function(successCallback, errorCallback, params) {
cordova.exec(successCallback, errorCallback, 'WebViewPlugin', 'hide', params);
cordova.exec(successCallback, errorCallback, 'WebViewPlugin', 'hide', params ? params : []);
};

var _hideLoading = function(successCallback, errorCallback) {
Expand Down

0 comments on commit e09dcc2

Please sign in to comment.