Playground page design #893
Replies: 3 comments 11 replies
-
Hey, thanks for your feedback! What kind of event listener would you use? At what point should it automatically trigger execution? Maybe a shortcut would be better than an event listener. Why would you automatically clear the output console? If we did, the user would have no control over it. Maybe a shortcut or an option to configure it would be better then taking control away from the user. The editor and output console are already displayed side by side. Only on smaller devices like smartphones we use a different layout. Can you provide more details? |
Beta Was this translation helpful? Give feedback.
-
function handleCtrlEnter(event) {
if (event.ctrlKey && event.key === 'Enter') {
document.getElementById('action').click();
}
}
document.addEventListener('keydown', handleCtrlEnter); CTRL + ENTER => RUn the terminal |
Beta Was this translation helpful? Give feedback.
-
I can't read the error i always need to scroll right |
Beta Was this translation helpful? Give feedback.
-
Hey there,
Could you enhance the playground usability? Here are a few suggestions:
grid-template-columns: 2fr 1fr
.Thanks!”
Beta Was this translation helpful? Give feedback.
All reactions