mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Set bellStyle to a string type instead of an array of strings
This commit is contained in:
+1
-1
@@ -115,7 +115,7 @@ export interface IInputHandlingTerminal extends IEventEmitter {
|
||||
|
||||
export interface ITerminalOptions {
|
||||
bellSound?: string;
|
||||
bellStyle?: string[];
|
||||
bellStyle?: string;
|
||||
cancelEvents?: boolean;
|
||||
colors?: string[];
|
||||
cols?: number;
|
||||
|
||||
+2
-6
@@ -2284,15 +2284,11 @@ export class Terminal extends EventEmitter implements ITerminal, IInputHandlingT
|
||||
}
|
||||
|
||||
private visualBell(): boolean {
|
||||
let styles = [].concat.apply([], [this.options.bellStyle]);
|
||||
|
||||
return styles.indexOf('visual') > -1 || styles.indexOf('both') > -1;
|
||||
return this.options.bellStyle == 'visual' || this.options.bellStyle == 'both';
|
||||
}
|
||||
|
||||
private soundBell(): boolean {
|
||||
let styles = [].concat.apply([], [this.options.bellStyle]);
|
||||
|
||||
return styles.indexOf('sound') > -1 || styles.indexOf('both') > -1;
|
||||
return this.options.bellStyle == 'sound' || this.options.bellStyle == 'both';
|
||||
}
|
||||
|
||||
private preloadBellSound(): void {
|
||||
|
||||
Reference in New Issue
Block a user