1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-07-12 23:12:49 +00:00
2025-03-21 17:24:56 +00:00

22 lines
405 B
JavaScript

/*\
title: $:/core/modules/startup/plugins.js
type: application/javascript
module-type: startup
Startup logic concerned with managing plugins
\*/
"use strict";
// Export name and synchronous status
exports.name = "plugins";
exports.after = ["load-modules"];
exports.before = ["startup"];
exports.synchronous = true;
exports.startup = function() {
$tw.utils.installPluginChangeHandler($tw.wiki);
};