cs-education / sysbuild

A system programming learning environment in the browser
https://cs-education.github.io/sys/
Other
36 stars 35 forks source link

Hitting enter inside editor font box takes user to homepage #81

Closed neelabhg closed 9 years ago

neelabhg commented 9 years ago

In fixing issue #25 I prevented the form containing the font box from submitting, however, it seems like something similar is happening again.

wchill commented 9 years ago

I tried executing the following code in console and it seems to fix the behavior (OS X 10.10, Chrome 41)

$('#editor-opts-container').find('form').submit(function() {
    return false;
});