Browse Source

Fixed confirm message

master
Igor Zhukov 11 years ago
parent
commit
649c93864c
  1. 2
      app/js/services.js

2
app/js/services.js

@ -3253,7 +3253,7 @@ angular.module('myApp.services', []) @@ -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)

Loading…
Cancel
Save