Merge pull request #6366 from gabrielbazan7/fix/prompts

fix button order
This commit is contained in:
Gustavo Maximiliano Cortez 2017-07-06 11:06:26 -03:00 committed by GitHub
commit 2d9bb1662c
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);
};
/**