Quote:
Originally Posted by tamborinegal
is there any update on the problem above? The problem is, if this happens at the beginning of a post, you have no way to check the rest, it just keeps suggesting the same word 
|
Test this for me. Open vbspell.js and find:
HTML Code:
if (misps[ wordindex ].suggestions.length) {
for (sugidx = 0; sugidx < misps[ wordindex ].suggestions.length; sugidx++) {
if (sugidx == 0)
isselected = 1;
else
isselected = 0;
newopt = new Option(misps[ wordindex ].suggestions[sugidx], misps[ wordindex ].suggestions[sugidx], 0, isselected);
sug.options[ sugidx ] = newopt;
if (isselected) {
frm.changeto.value = misps[ wordindex ].suggestions[sugidx];
frm.changeto.select();
}
}
}
Add after:
HTML Code:
else
{
frm.changeto.value = '';
frm.changeto.select();
}