mirror of
https://github.com/aths7/cypher.git
synced 2026-07-22 11:20:27 +00:00
removing comments
This commit is contained in:
parent
6d8454a88d
commit
6d8eb85762
2 changed files with 4 additions and 5 deletions
8
main.ts
8
main.ts
|
|
@ -21,10 +21,10 @@ export default class CypherPlugin extends Plugin {
|
|||
this.addRibbonIcon('dice', 'Cypher Text', () => {
|
||||
this.isCypherEnabled = !this.isCypherEnabled;
|
||||
if (this.isCypherEnabled) {
|
||||
new Notice('Cypher Plugin Activated!');
|
||||
new Notice('Cypher Activated!');
|
||||
this.applyCypher();
|
||||
} else {
|
||||
new Notice('Cypher Plugin Deactivated!');
|
||||
new Notice('Cypher Deactivated!');
|
||||
this.revertCypher();
|
||||
}
|
||||
}).addClass('cypher-plugin-ribbon-class');
|
||||
|
|
@ -51,7 +51,7 @@ export default class CypherPlugin extends Plugin {
|
|||
}
|
||||
|
||||
onunload() {
|
||||
console.log("Cypher Plugin unloaded.");
|
||||
console.log("Cypher unloaded.");
|
||||
}
|
||||
|
||||
async loadSettings() {
|
||||
|
|
@ -176,7 +176,7 @@ class CypherSettingTab extends PluginSettingTab {
|
|||
display(): void {
|
||||
const { containerEl } = this;
|
||||
containerEl.empty();
|
||||
containerEl.createEl('h2', { text: 'Cypher Plugin Settings' });
|
||||
containerEl.createEl('h2', { text: 'Cypher Settings' });
|
||||
|
||||
new Setting(containerEl)
|
||||
.setName('Cypher Style')
|
||||
|
|
|
|||
|
|
@ -6,6 +6,5 @@
|
|||
"description": "Hides text in a simple diagramatic cypher to make reading unrecognizable for viewers.",
|
||||
"author": "Atharva",
|
||||
"authorUrl": "https://github.com/aths7",
|
||||
"fundingUrl": "https://github.com/aths7",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue