소스 검색

Fix on previous commit

Thijs Kinkhorst 22 년 전
부모
커밋
46cfe9697d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      plugins/squirrelspell/js/init.js

+ 1 - 1
plugins/squirrelspell/js/init.js

@@ -21,5 +21,5 @@
 function sqspell_init(flag){
   textToSpell = opener.document.compose.subject.value + "\n" + opener.document.compose.body.value;
   document.forms[0].sqspell_text.value = textToSpell;
-  if (flag) document.compose.submit();
+  if (flag) document.forms[0].submit();
 }