This commit is contained in:
Peli de Halleux 2015-08-05 16:28:49 -07:00
Родитель 928449d709
Коммит 7d0b4c388c
2 изменённых файлов: 2 добавлений и 7 удалений

Просмотреть файл

@ -1944,7 +1944,7 @@ module TDev
if (trg)
TipManager.setTip({
el: trg,
title: lf("enter text: ") + ins.targetName,
title: lf("type: {0}", ins.targetName),
description: lf("tap [ok] when done"),
})
else

Просмотреть файл

@ -592,23 +592,18 @@ module TDev.HTML {
okBtn = mkButton(lf("ok"), () => {
var b = okBtn
okBtn = null
var h = onOk;
onOk = null;
res.style.width = "";
if (b) b.removeSelf();
res.blur()
if (h) h();
}, "input-confirm");
res.parentNode.insertBefore(okBtn, res.nextSibling)
})
res.addEventListener("blur", () => {
var b = okBtn
okBtn = null
var h = onOk;
onOk = null;
res.style.width = "";
if (b) b.removeSelf();
if (h) h();
if (onOk) onOk();
}, false)
return res