[dw-free] Tab key in S2 layout editor doesn't insert \t in Safari
[commit: http://hg.dwscoalition.org/dw-free/rev/e78bfd3b1bdd]
http://bugs.dwscoalition.org/show_bug.cgi?id=331
Fix typo.
http://bugs.dwscoalition.org/show_bug.cgi?id=331
Fix typo.
-------------------------------------------------------------------------------- diff -r 577bee46ff11 -r e78bfd3b1bdd htdocs/js/s2edit/s2gui.js --- a/htdocs/js/s2edit/s2gui.js Thu Feb 26 18:50:20 2009 +0000 +++ b/htdocs/js/s2edit/s2gui.js Thu Feb 26 18:57:01 2009 +0000 @@ -86,7 +86,7 @@ function s2keyPressed(e) nxinsertText(area, "\t"); area.focus(); } - Event.preventDefeault(e); + Event.preventDefault(e); return false; } else s2sense(e.charCode); --------------------------------------------------------------------------------
