mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-07-14 16:02:50 +00:00
22 lines
405 B
JavaScript
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);
|
|
};
|
|
|