mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
fix bug in editor ts conversion
This commit is contained in:
parent
2155e93bad
commit
18e60f7678
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ function setFields(fields) {
|
||||||
f = "<br>";
|
f = "<br>";
|
||||||
}
|
}
|
||||||
txt += `<tr><td class=fname>${n}</td></tr><tr><td width=100%>`;
|
txt += `<tr><td class=fname>${n}</td></tr><tr><td width=100%>`;
|
||||||
txt += `<div id=f${i} onkeydown='onKey(window.event);' oninput='onInput()' onmouseup='onKey();'`;
|
txt += `<div id=f${i} onkeydown='onKey(window.event);' oninput='onInput()' onmouseup='onKey(window.event);'`;
|
||||||
txt +=
|
txt +=
|
||||||
" onfocus='onFocus(this);' onblur='onBlur();' class='field clearfix' ";
|
" onfocus='onFocus(this);' onblur='onBlur();' class='field clearfix' ";
|
||||||
txt += "ondragover='onDragOver(this);' onpaste='onPaste(this);' ";
|
txt += "ondragover='onDragOver(this);' onpaste='onPaste(this);' ";
|
||||||
|
|
Loading…
Reference in a new issue