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 d0482b9 commit 5646351Copy full SHA for 5646351
webiojs/src/models/input/textarea.ts
@@ -31,7 +31,7 @@ export class Textarea extends InputItem {
31
cm.setOption("fullScreen", !cm.getOption("fullScreen"));
32
},
33
"Esc": function (cm: any) {
34
- if (cm.getOption("fullScreen")) cm.setOption("fullScreen", false);
+ cm.setOption("fullScreen", !cm.getOption("fullScreen"));
35
}
36
37
};
0 commit comments