@@ -2351,10 +2351,14 @@ function showAlert(msg, func, title, index, t)
layer.close(index);
};
+ var flag = false;
if (func) {
config.yes = function(index)
{
- func(index);
+ if (!flag) {
+ flag = true;
+ func(index);
+ }
} else {
config.yes = config.cancel;