ShaopengLin ef40fca328 Introduce QWebEngine Javascript Infrastructure
Setup for TOC Javascript/CSS Injection
2024-11-05 01:50:08 -05:00

6 lines
162 B
JavaScript

var style = document.createElement('link');
style.rel = "stylesheet";
style.type = "text/css";
style.href = "qrc:/css/toc.css";
document.head.appendChild(style);