fix button order

This commit is contained in:
Gabriel Bazán 2017-07-06 10:29:42 -03:00
parent ece5c47ff7
commit 6e93ce4ae1
1 changed files with 1 additions and 1 deletions

View File

@ -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);
};
/**