mirror of
https://github.com/kiwix/kiwix-desktop.git
synced 2025-09-12 05:58:01 -04:00
6 lines
162 B
JavaScript
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);
|