mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
skip jquery in clayout
This commit is contained in:
parent
4a235b96a5
commit
d93a85e28f
1 changed files with 5 additions and 2 deletions
|
@ -12,6 +12,7 @@ from aqt.utils import saveGeom, restoreGeom, getBase, mungeQA, \
|
||||||
showWarning, openHelp, openLink
|
showWarning, openHelp, openLink
|
||||||
from anki.utils import isMac, isWin, joinFields
|
from anki.utils import isMac, isWin, joinFields
|
||||||
from aqt.webview import AnkiWebView
|
from aqt.webview import AnkiWebView
|
||||||
|
import anki.js
|
||||||
|
|
||||||
class CardLayout(QDialog):
|
class CardLayout(QDialog):
|
||||||
|
|
||||||
|
@ -212,10 +213,12 @@ Please create a new card type first."""))
|
||||||
base = getBase(self.mw.col)
|
base = getBase(self.mw.col)
|
||||||
self.tab['pform'].frontWeb.stdHtml(
|
self.tab['pform'].frontWeb.stdHtml(
|
||||||
ti(mungeQA(c.q(reload=True))), self.mw.reviewer._styles(),
|
ti(mungeQA(c.q(reload=True))), self.mw.reviewer._styles(),
|
||||||
bodyClass="card card%d" % (c.ord+1), head=base)
|
bodyClass="card card%d" % (c.ord+1), head=base,
|
||||||
|
js=anki.js.browserSel)
|
||||||
self.tab['pform'].backWeb.stdHtml(
|
self.tab['pform'].backWeb.stdHtml(
|
||||||
ti(mungeQA(c.a()), type='a'), self.mw.reviewer._styles(),
|
ti(mungeQA(c.a()), type='a'), self.mw.reviewer._styles(),
|
||||||
bodyClass="card card%d" % (c.ord+1), head=base)
|
bodyClass="card card%d" % (c.ord+1), head=base,
|
||||||
|
js=anki.js.browserSel)
|
||||||
clearAudioQueue()
|
clearAudioQueue()
|
||||||
if c.id not in self.playedAudio:
|
if c.id not in self.playedAudio:
|
||||||
playFromText(c.q())
|
playFromText(c.q())
|
||||||
|
|
Loading…
Reference in a new issue