We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64148ee commit 7ac0af5Copy full SHA for 7ac0af5
src/index.ts
@@ -258,6 +258,12 @@ export default class PluginSample extends Plugin {
258
console.log("uninstall");
259
}
260
261
+ // 使用 saveData() 存储的数据发生变更时触发,注释掉则自动禁用插件再重新启用
262
+ // Triggered when data stored using saveData() changes. If commented out, the plugin will be automatically disabled and then re-enabled.
263
+ // onDataChanged() {
264
+ // console.log("onDataChanged");
265
+ // }
266
+
267
async updateCards(options: ICardData) {
268
options.cards.sort((a: ICard, b: ICard) => {
269
if (a.blockID < b.blockID) {
0 commit comments