Fixed confirm message

This commit is contained in:
Igor Zhukov 2014-04-29 22:14:56 +08:00
parent 08b278069d
commit 649c93864c

View File

@ -3253,7 +3253,7 @@ angular.module('myApp.services', [])
if (typeof params === 'string') {
params = {message: params};
}
confirm(params.message).then(function (result) {
confirm(params).then(function (result) {
callback(result || true)
}, function () {
callback(false)