diff --git a/src/js/services/popupService.js b/src/js/services/popupService.js index 566171949..8b4489947 100644 --- a/src/js/services/popupService.js +++ b/src/js/services/popupService.js @@ -72,7 +72,7 @@ angular.module('copayApp.services').service('popupService', function($log, $ioni var okText = gettextCatalog.getString('OK'); var cancelText = gettextCatalog.getString('Cancel'); title = title ? title : ''; - navigator.notification.prompt(message, onPrompt, title, [cancelText, okText], opts.defaultText); + navigator.notification.prompt(message, onPrompt, title, [okText, cancelText], opts.defaultText); }; /**