mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	semicolons
This commit is contained in:
		
							parent
							
								
									58c77c4d5c
								
							
						
					
					
						commit
						f98229d3e0
					
				
					 4 changed files with 12 additions and 12 deletions
				
			
		| 
						 | 
					@ -336,7 +336,7 @@ let renoting = false;
 | 
				
			||||||
const keymap = {
 | 
					const keymap = {
 | 
				
			||||||
	'r': () => reply(true),
 | 
						'r': () => reply(true),
 | 
				
			||||||
	'e|a|plus': () => react(true),
 | 
						'e|a|plus': () => react(true),
 | 
				
			||||||
	'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility) } },
 | 
						'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility); } },
 | 
				
			||||||
	'up|k|shift+tab': focusBefore,
 | 
						'up|k|shift+tab': focusBefore,
 | 
				
			||||||
	'down|j|tab': focusAfter,
 | 
						'down|j|tab': focusAfter,
 | 
				
			||||||
	'esc': blur,
 | 
						'esc': blur,
 | 
				
			||||||
| 
						 | 
					@ -441,7 +441,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
			}).then(() => {
 | 
								}).then(() => {
 | 
				
			||||||
				os.toast(i18n.ts.renoted);
 | 
									os.toast(i18n.ts.renoted);
 | 
				
			||||||
				renoted.value = true;
 | 
									renoted.value = true;
 | 
				
			||||||
			}).finally(() => { renoting = false });
 | 
								}).finally(() => { renoting = false; });
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
						} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
				
			||||||
		const el = renoteButton.value as HTMLElement | null | undefined;
 | 
							const el = renoteButton.value as HTMLElement | null | undefined;
 | 
				
			||||||
| 
						 | 
					@ -460,7 +460,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
			}).then(() => {
 | 
								}).then(() => {
 | 
				
			||||||
				os.toast(i18n.ts.renoted);
 | 
									os.toast(i18n.ts.renoted);
 | 
				
			||||||
				renoted.value = true;
 | 
									renoted.value = true;
 | 
				
			||||||
			}).finally(() => renoting = false);
 | 
								}).finally(() => { renoting = false; });
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -342,7 +342,7 @@ let renoting = false;
 | 
				
			||||||
const keymap = {
 | 
					const keymap = {
 | 
				
			||||||
	'r': () => reply(true),
 | 
						'r': () => reply(true),
 | 
				
			||||||
	'e|a|plus': () => react(true),
 | 
						'e|a|plus': () => react(true),
 | 
				
			||||||
	'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility) } },
 | 
						'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility); } },
 | 
				
			||||||
	'esc': blur,
 | 
						'esc': blur,
 | 
				
			||||||
	'm|o': () => showMenu(true),
 | 
						'm|o': () => showMenu(true),
 | 
				
			||||||
	's': () => showContent.value !== showContent.value,
 | 
						's': () => showContent.value !== showContent.value,
 | 
				
			||||||
| 
						 | 
					@ -460,7 +460,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
		}).then(() => {
 | 
							}).then(() => {
 | 
				
			||||||
			os.toast(i18n.ts.renoted);
 | 
								os.toast(i18n.ts.renoted);
 | 
				
			||||||
			renoted.value = true;
 | 
								renoted.value = true;
 | 
				
			||||||
		}).finally(() => { renoting = false });
 | 
							}).finally(() => { renoting = false; });
 | 
				
			||||||
	} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
						} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
				
			||||||
		const el = renoteButton.value as HTMLElement | null | undefined;
 | 
							const el = renoteButton.value as HTMLElement | null | undefined;
 | 
				
			||||||
		if (el) {
 | 
							if (el) {
 | 
				
			||||||
| 
						 | 
					@ -477,7 +477,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
		}).then(() => {
 | 
							}).then(() => {
 | 
				
			||||||
			os.toast(i18n.ts.renoted);
 | 
								os.toast(i18n.ts.renoted);
 | 
				
			||||||
			renoted.value = true;
 | 
								renoted.value = true;
 | 
				
			||||||
		}).finally(() => { renoting = false });
 | 
							}).finally(() => { renoting = false; });
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -335,7 +335,7 @@ let renoting = false;
 | 
				
			||||||
const keymap = {
 | 
					const keymap = {
 | 
				
			||||||
	'r': () => reply(true),
 | 
						'r': () => reply(true),
 | 
				
			||||||
	'e|a|plus': () => react(true),
 | 
						'e|a|plus': () => react(true),
 | 
				
			||||||
	'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility) } },
 | 
						'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility); } },
 | 
				
			||||||
	'up|k|shift+tab': focusBefore,
 | 
						'up|k|shift+tab': focusBefore,
 | 
				
			||||||
	'down|j|tab': focusAfter,
 | 
						'down|j|tab': focusAfter,
 | 
				
			||||||
	'esc': blur,
 | 
						'esc': blur,
 | 
				
			||||||
| 
						 | 
					@ -440,7 +440,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
			}).then(() => {
 | 
								}).then(() => {
 | 
				
			||||||
				os.toast(i18n.ts.renoted);
 | 
									os.toast(i18n.ts.renoted);
 | 
				
			||||||
				renoted.value = true;
 | 
									renoted.value = true;
 | 
				
			||||||
			}).finally(() => { renoting = false });
 | 
								}).finally(() => { renoting = false; });
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
						} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
				
			||||||
		const el = renoteButton.value as HTMLElement | null | undefined;
 | 
							const el = renoteButton.value as HTMLElement | null | undefined;
 | 
				
			||||||
| 
						 | 
					@ -459,7 +459,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
			}).then(() => {
 | 
								}).then(() => {
 | 
				
			||||||
				os.toast(i18n.ts.renoted);
 | 
									os.toast(i18n.ts.renoted);
 | 
				
			||||||
				renoted.value = true;
 | 
									renoted.value = true;
 | 
				
			||||||
			}).finally(() => { renoting = false });
 | 
								}).finally(() => { renoting = false; });
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -351,7 +351,7 @@ let renoting = false;
 | 
				
			||||||
const keymap = {
 | 
					const keymap = {
 | 
				
			||||||
	'r': () => reply(true),
 | 
						'r': () => reply(true),
 | 
				
			||||||
	'e|a|plus': () => react(true),
 | 
						'e|a|plus': () => react(true),
 | 
				
			||||||
	'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility) } },
 | 
						'(q)': () => { if (canRenote.value && !renoted.value && !renoting) { renoting = true; renote(appearNote.value.visibility); } },
 | 
				
			||||||
	'esc': blur,
 | 
						'esc': blur,
 | 
				
			||||||
	'm|o': () => showMenu(true),
 | 
						'm|o': () => showMenu(true),
 | 
				
			||||||
	's': () => showContent.value !== showContent.value,
 | 
						's': () => showContent.value !== showContent.value,
 | 
				
			||||||
| 
						 | 
					@ -469,7 +469,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
		}).then(() => {
 | 
							}).then(() => {
 | 
				
			||||||
			os.toast(i18n.ts.renoted);
 | 
								os.toast(i18n.ts.renoted);
 | 
				
			||||||
			renoted.value = true;
 | 
								renoted.value = true;
 | 
				
			||||||
		}).finally(() => { renoting = false });
 | 
							}).finally(() => { renoting = false; });
 | 
				
			||||||
	} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
						} else if (!appearNote.value.channel || appearNote.value.channel.allowRenoteToExternal) {
 | 
				
			||||||
		const el = renoteButton.value as HTMLElement | null | undefined;
 | 
							const el = renoteButton.value as HTMLElement | null | undefined;
 | 
				
			||||||
		if (el) {
 | 
							if (el) {
 | 
				
			||||||
| 
						 | 
					@ -486,7 +486,7 @@ function renote(visibility: Visibility, localOnly: boolean = false) {
 | 
				
			||||||
		}).then(() => {
 | 
							}).then(() => {
 | 
				
			||||||
			os.toast(i18n.ts.renoted);
 | 
								os.toast(i18n.ts.renoted);
 | 
				
			||||||
			renoted.value = true;
 | 
								renoted.value = true;
 | 
				
			||||||
		}).finally(() => { renoting = false });
 | 
							}).finally(() => { renoting = false; });
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue