mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
fix bug in editor ts conversion
This commit is contained in:
parent
8cee5e5d7e
commit
0998cf04f2
1 changed files with 1 additions and 1 deletions
|
|
@ -336,7 +336,7 @@ function setFields(fields) {
|
|||
f = "<br>";
|
||||
}
|
||||
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 +=
|
||||
" onfocus='onFocus(this);' onblur='onBlur();' class='field clearfix' ";
|
||||
txt += "ondragover='onDragOver(this);' onpaste='onPaste(this);' ";
|
||||
|
|
|
|||
Loading…
Reference in a new issue