mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-19 08:00:13 +01:00
This commit is contained in:
parent
03b2c3d949
commit
6d3b7777ac
1 changed files with 11 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ import {Plugin} from "../plugin";
|
||||||
import {App} from "../index";
|
import {App} from "../index";
|
||||||
import {escapeAttr} from "../util/escape";
|
import {escapeAttr} from "../util/escape";
|
||||||
import {uninstall} from "../plugin/uninstall";
|
import {uninstall} from "../plugin/uninstall";
|
||||||
import {afterLoadPlugin, loadPlugin, loadPlugins} from "../plugin/loader";
|
import {afterLoadPlugin, loadPlugin, loadPlugins, reloadPlugin} from "../plugin/loader";
|
||||||
import {loadAssets} from "../util/assets";
|
import {loadAssets} from "../util/assets";
|
||||||
import {addScript} from "../protyle/util/addScript";
|
import {addScript} from "../protyle/util/addScript";
|
||||||
|
|
||||||
|
|
@ -797,6 +797,16 @@ export const bazaar = {
|
||||||
} else {
|
} else {
|
||||||
(document.getElementById("themeStyle") as HTMLLinkElement).href = `/appearance/themes/${currentTheme}/theme.css?v=${response.data.appearance.themeVer}`;
|
(document.getElementById("themeStyle") as HTMLLinkElement).href = `/appearance/themes/${currentTheme}/theme.css?v=${response.data.appearance.themeVer}`;
|
||||||
}
|
}
|
||||||
|
} else if (bazaarType === "plugins") {
|
||||||
|
app.plugins.find((item: Plugin) => {
|
||||||
|
if (item.name === dataObj.name) {
|
||||||
|
reloadPlugin(app, {
|
||||||
|
upsertPlugins: [dataObj.name],
|
||||||
|
removePlugins: []
|
||||||
|
});
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue