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 2085bb1a99
commit dee114df63

View file

@ -379,7 +379,7 @@ div[contenteditable="true"]:focus {
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()