From 145dc7aa9346d0fd8eeed8840f677e76364f63ee Mon Sep 17 00:00:00 2001 From: kink Date: Mon, 21 Jul 2003 13:10:41 +0000 Subject: [PATCH] Fix problem with javascript when user has other plugins that include a form before this form (eg Menu Buttons plugin). Using the name of the compose form solves this. Plus, use SquirrelMail standard copyright notice. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5366 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/squirrelspell/js/check_me.js | 12 ++++++------ plugins/squirrelspell/js/init.js | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/plugins/squirrelspell/js/check_me.js b/plugins/squirrelspell/js/check_me.js index 1abc4e0d..ad56b7f2 100644 --- a/plugins/squirrelspell/js/check_me.js +++ b/plugins/squirrelspell/js/check_me.js @@ -1,14 +1,14 @@ /** * check_me.js - * ------------ + * + * Copyright (c) 1999-2003 The SquirrelMail Project Team + * Licensed under the GNU GPL. For full terms see the file COPYING. + * * This JavaScript app is the driving power of the SquirrelSpell's * main spellchecker window. Hope you have as much pain figuring * it out as it took to write. ;)) * * $Id$ - * - * @author Konstantin Riabitsev ($Author$) - * @version $Date$ */ var CurrentError=0; @@ -278,8 +278,8 @@ function sqspellCommitChanges(){ newBody += sqspell_lines[i]; } - opener.document.forms[0].subject.value=newSubject; - opener.document.forms[0].body.value=newBody; + opener.document.compose.subject.value=newSubject; + opener.document.compose.body.value=newBody; /** * See if any words were added to the dictionary. diff --git a/plugins/squirrelspell/js/init.js b/plugins/squirrelspell/js/init.js index a7448c31..628816d7 100644 --- a/plugins/squirrelspell/js/init.js +++ b/plugins/squirrelspell/js/init.js @@ -1,13 +1,13 @@ /** * init.js - * ------- + * + * Copyright (c) 1999-2003 The SquirrelMail Project Team + * Licensed under the GNU GPL. For full terms see the file COPYING. + * * Grabs the text from the SquirrelMail field and submits it to * the squirrelspell. * * $Id$ - * - * @author Konstantin Riabitsev ($Author$) - * @version $Date$ */ /** @@ -19,7 +19,7 @@ * @return void */ function sqspell_init(flag){ - textToSpell = opener.document.forms[0].subject.value + "\n" + opener.document.forms[0].body.value; + textToSpell = opener.document.compose.subject.value + "\n" + opener.document.compose.body.value; document.forms[0].sqspell_text.value = textToSpell; - if (flag) document.forms[0].submit(); + if (flag) document.compose.submit(); } -- 2.25.1