Conflicts: src/js/controllers/buyGlidera.js src/js/controllers/walletHome.js src/js/services/localStorage.js
37 lines
936 B
JavaScript
37 lines
936 B
JavaScript
|
|
'use strict';
|
|
|
|
angular.module('copayApp.services').factory('confirmDialog', function($log, $timeout, profileService, configService, gettextCatalog, platformInfo) {
|
|
var root = {};
|
|
|
|
|
|
var acceptMsg = gettextCatalog.getString('Accept');
|
|
var cancelMsg = gettextCatalog.getString('Cancel');
|
|
var confirmMsg = gettextCatalog.getString('Confirm');
|
|
|
|
root.show = function(msg, cb) {
|
|
if (platformInfo.isCordova) {
|
|
navigator.notification.confirm(
|
|
msg,
|
|
function(buttonIndex) {
|
|
if (buttonIndex == 1) {
|
|
$timeout(function() {
|
|
return cb(true);
|
|
}, 1);
|
|
} else {
|
|
return cb(false);
|
|
}
|
|
},
|
|
confirmMsg, [acceptMsg, cancelMsg]
|
|
);
|
|
} else if (platformInfo.isChromeApp) {
|
|
// No feedback, alert/confirm not supported.
|
|
return cb(true);
|
|
} else {
|
|
return cb(confirm(msg));
|
|
}
|
|
};
|
|
|
|
return root;
|
|
});
|
|
|