|
|
@ -285,7 +285,7 @@ define([
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
UI.confirm = function (msg, cb, opt, force, styleCB) {
|
|
|
|
UI.confirm = function (msg, cb, opt, force) {
|
|
|
|
cb = cb || function () {};
|
|
|
|
cb = cb || function () {};
|
|
|
|
opt = opt || {};
|
|
|
|
opt = opt || {};
|
|
|
|
|
|
|
|
|
|
|
@ -328,8 +328,8 @@ define([
|
|
|
|
document.body.appendChild(frame);
|
|
|
|
document.body.appendChild(frame);
|
|
|
|
setTimeout(function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
UI.notify();
|
|
|
|
UI.notify();
|
|
|
|
if (typeof(styleCB) === 'function') {
|
|
|
|
if (typeof(opt.done) === 'function') {
|
|
|
|
styleCB($ok.closest('.dialog'));
|
|
|
|
opt.done($ok.closest('.dialog'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|