diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-18 09:23:43 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-18 09:23:43 +0100 |
| commit | 4eca49d068924970f4218841aee102f8068c1d05 (patch) | |
| tree | d4f4df09bf32cd2d945eca0165cb4d88626f75cd | |
| parent | 40d8ed88232d60e96373f1ebb016784133980a29 (diff) | |
| download | liberty-4eca49d068924970f4218841aee102f8068c1d05.tar.gz liberty-4eca49d068924970f4218841aee102f8068c1d05.tar.bz2 liberty-4eca49d068924970f4218841aee102f8068c1d05.zip | |
Tidy ckeditor to allow browser based spellcheck and retire other options
| -rwxr-xr-x | templates/edit_textarea.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/edit_textarea.tpl b/templates/edit_textarea.tpl index 2f10ca5..091198c 100755 --- a/templates/edit_textarea.tpl +++ b/templates/edit_textarea.tpl @@ -16,7 +16,7 @@ {forminput} {formfeedback error=$textarea_error} {if !$textarea_id}{assign var=textarea_id value=$smarty.const.LIBERTY_TEXT_AREA}{/if} - <textarea {$textarea_class} {$textarea_attributes} {if $textarea_maxchars}onkeydown="BitBase.charCounter('{$textarea_id}','{$textarea_id}Counter','{$textarea_maxchars}');" onkeyup="BitBase.charCounter('{$textarea_id}','{$textarea_id}Counter','{$textarea_maxchars}');"{/if} {spellchecker width=$cols height=$rows} id="{$textarea_id}" name="{$textarea_name|default:edit}" {$textarea_style}>{$textarea_edit|escape}</textarea> + <textarea {$textarea_class} {$textarea_attributes} {if $textarea_maxchars}onkeydown="BitBase.charCounter('{$textarea_id}','{$textarea_id}Counter','{$textarea_maxchars}');" onkeyup="BitBase.charCounter('{$textarea_id}','{$textarea_id}Counter','{$textarea_maxchars}');"{/if} spellcheck="true" id="{$textarea_id}" name="{$textarea_name|default:edit}" {$textarea_style}>{$textarea_edit|escape}</textarea> {if $textarea_required}{required}{/if} {if $textarea_maxchars} |
