From 6e93ce4ae1af7f9d9ed60d04fea19ca001fc6940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 6 Jul 2017 10:29:42 -0300 Subject: [PATCH] fix button order --- src/js/services/popupService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }; /**