put head text after css/js imports so it can override them

as discussed in PR #438
This commit is contained in:
Damien Elmes 2020-02-17 08:38:59 +10:00
parent 7894ab3312
commit 57b678a939

View file

@ -379,7 +379,7 @@ div[contenteditable="true"]:focus {
from aqt import mw from aqt import mw
head = mw.baseHTML() + web_content.head + csstxt + jstxt head = mw.baseHTML() + csstxt + jstxt + web_content.head
body_class = theme_manager.body_class() body_class = theme_manager.body_class()