summaryrefslogtreecommitdiff
path: root/lib/scripts
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-01-25 21:54:00 +0100
committerAndreas Gohr <andi@splitbrain.org>2006-01-25 21:54:00 +0100
commit172a95742731f0bb87bdc2e7c5ef8b4120c5f427 (patch)
tree0aac523a56cc29dc9b9cc9ab3182e67b00e406c8 /lib/scripts
parent1044933224145c95bacf2d3534eaed7d9381fdf4 (diff)
downloadrpg-172a95742731f0bb87bdc2e7c5ef8b4120c5f427.tar.gz
rpg-172a95742731f0bb87bdc2e7c5ef8b4120c5f427.tar.bz2
hide lower toolbar while spellchecking
darcs-hash:20060125205400-7ad00-5cc3ed97d2ca21003f72e09150f9f49149db9e44.gz
Diffstat (limited to 'lib/scripts')
-rw-r--r--lib/scripts/spellcheck.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/spellcheck.js b/lib/scripts/spellcheck.js
index ceb1cd074..9ce529131 100644
--- a/lib/scripts/spellcheck.js
+++ b/lib/scripts/spellcheck.js
@@ -323,7 +323,6 @@ function ajax_spell_class(){
ajax_spell.showboxObj.style.width = ajax_spell.textboxObj.style.width;
ajax_spell.showboxObj.style.height = ajax_spell.textboxObj.style.height;
ajax_spell.textboxObj.style.display = 'none';
- ajax_spell.editbarObj.style.visibility = 'hidden';
ajax_spell.showboxObj.style.display = 'block';
}else{
if(error == '2'){
@@ -374,6 +373,7 @@ function ajax_spell_class(){
this.run = function(){
ajax_spell.setState('run');
ajax_spell.textboxObj.disabled = true;
+ ajax_spell.editbarObj.style.visibility = 'hidden';
var ajax = new sack(ajax_spell.handler);
ajax.AjaxFailedAlert = '';
ajax.encodeURIString = false;