afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-02-26 06:57 pm

[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.

--------------------------------------------------------------------------------
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);
--------------------------------------------------------------------------------