1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-28 03:52:43 +00:00
TiddlyWiki5/core/modules/themes.js

24 lines
385 B
JavaScript
Raw Normal View History

/*\
title: $:/core/modules/themes.js
type: application/javascript
module-type: global
Manages themes and styling.
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
function ThemeManager(wiki) {
this.wiki = wiki;
// Unpack the current theme tiddlers
$tw.wiki.unpackPluginTiddlers("theme");
}
exports.ThemeManager = ThemeManager;
})();