Skip to content

Commit

Permalink
Merge pull request xtermjs#4803 from tisilent/clear-repeat-overviewRu…
Browse files Browse the repository at this point in the history
…lerWidth

Clear repeat overviewRulerWidth option in demo
  • Loading branch information
Tyriar authored Sep 14, 2023
2 parents 1618092 + 9048ded commit 0e66d60
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions demo/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,7 @@ function initOptions(term: TerminalType): void {
};
const options = Object.getOwnPropertyNames(term.options);
const booleanOptions = [];
const numberOptions = [
'overviewRulerWidth'
];
const numberOptions = [];
options.filter(o => blacklistedOptions.indexOf(o) === -1).forEach(o => {
switch (typeof term.options[o]) {
case 'boolean':
Expand Down

0 comments on commit 0e66d60

Please sign in to comment.