Skip to content
Snippets Groups Projects
Commit 172a9574 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

hide lower toolbar while spellchecking

darcs-hash:20060125205400-7ad00-5cc3ed97d2ca21003f72e09150f9f49149db9e44.gz
parent 10449332
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment