|
|
@ -237,6 +237,7 @@ define([
|
|
|
|
setTimeout(function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
$ok.focus();
|
|
|
|
$ok.focus();
|
|
|
|
UI.notify();
|
|
|
|
UI.notify();
|
|
|
|
|
|
|
|
if (!document.hasFocus()) { window.focus(); }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
@ -282,10 +283,11 @@ define([
|
|
|
|
setTimeout(function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
input.select().focus();
|
|
|
|
input.select().focus();
|
|
|
|
UI.notify();
|
|
|
|
UI.notify();
|
|
|
|
|
|
|
|
if (!document.hasFocus()) { window.focus(); }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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,9 +330,10 @@ 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'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!document.hasFocus()) { window.focus(); }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|