We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 525d1c4 commit 1d29143Copy full SHA for 1d29143
docs/src/components/Terminal/index.tsx
@@ -131,11 +131,11 @@ export default function Interpreter(): JSX.Element {
131
if (replReady() && styleReady()) {
132
term.current = initTerminal(commands);
133
jargon_init((globalThis as any).jQuery as JQueryStatic);
134
- term.current.on('click', '.jargon', function() {
+ term.current.on('click', 'a.jargon', function() {
135
const href = $(this).attr('href');
136
invoke(`jargon ${href}`);
137
return false;
138
- }).on('click', '.command', function() {
+ }).on('click', 'a.command', function() {
139
const commnad = $(this).attr('href');
140
invoke(commnad);
141
0 commit comments