| | |
| | | var GOOGIE_DEFAULT_LANG = 'en'; |
| | | |
| | | function GoogieSpell(img_dir, server_url) { |
| | | var ref = this; |
| | | var ref = this, |
| | | cookie_value = getCookie('language'); |
| | | |
| | | GOOGIE_CUR_LANG = cookie_value != null ? cookie_value : GOOGIE_DEFAULT_LANG; |
| | | |
| | | this.array_keys = function(arr) { |
| | | var res = []; |
| | | for (var key in arr) { res.push([key]); } |
| | | return res; |
| | | } |
| | | |
| | | var cookie_value = getCookie('language'); |
| | | GOOGIE_CUR_LANG = cookie_value != null ? cookie_value : GOOGIE_DEFAULT_LANG; |
| | | |
| | | this.img_dir = img_dir; |
| | | this.server_url = server_url; |
| | |
| | | |
| | | if (this.text_area) { |
| | | if (!this.spell_container && this.decoration) { |
| | | var table = document.createElement('table'); |
| | | var tbody = document.createElement('tbody'); |
| | | var tr = document.createElement('tr'); |
| | | var spell_container = document.createElement('td'); |
| | | |
| | | var r_width = this.isDefined(this.force_width) ? this.force_width : this.text_area.offsetWidth; |
| | | var r_height = this.isDefined(this.force_height) ? this.force_height : 16; |
| | | var table = document.createElement('table'), |
| | | tbody = document.createElement('tbody'), |
| | | tr = document.createElement('tr'), |
| | | spell_container = document.createElement('td'), |
| | | r_width = this.isDefined(this.force_width) ? this.force_width : this.text_area.offsetWidth, |
| | | r_height = this.isDefined(this.force_height) ? this.force_height : 16; |
| | | |
| | | tr.appendChild(spell_container); |
| | | tbody.appendChild(tr); |
| | |
| | | else |
| | | if (this.report_ta_not_found) |
| | | alert('Text area not found'); |
| | | } |
| | | }; |
| | | |
| | | ////// |
| | | // API Functions (the ones that you can call) |
| | | ///// |
| | | this.setSpellContainer = function(id) { |
| | | this.spell_container = typeof(id) == 'string' ? document.getElementById(id) : id; |
| | | } |
| | | }; |
| | | |
| | | this.setLanguages = function(lang_dict) { |
| | | this.lang_to_word = lang_dict; |
| | | this.langlist_codes = this.array_keys(lang_dict); |
| | | } |
| | | }; |
| | | |
| | | this.setCurrentLanguage = function(lan_code) { |
| | | GOOGIE_CUR_LANG = lan_code; |
| | |
| | | var now = new Date(); |
| | | now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000); |
| | | setCookie('language', lan_code, now); |
| | | } |
| | | }; |
| | | |
| | | this.setForceWidthHeight = function(width, height) { |
| | | // Set to null if you want to use one of them |
| | | this.force_width = width; |
| | | this.force_height = height; |
| | | } |
| | | }; |
| | | |
| | | this.setDecoration = function(bool) { |
| | | this.decoration = bool; |
| | | } |
| | | }; |
| | | |
| | | this.dontUseCloseButtons = function() { |
| | | this.use_close_btn = false; |
| | | } |
| | | }; |
| | | |
| | | this.appendNewMenuItem = function(name, call_back_fn, checker) { |
| | | this.extra_menu_items.push([name, call_back_fn, checker]); |
| | | } |
| | | }; |
| | | |
| | | this.appendCustomMenuBuilder = function(eval, builder) { |
| | | this.custom_menu_builder.push([eval, builder]); |
| | | } |
| | | }; |
| | | |
| | | this.setFocus = function() { |
| | | try { |
| | |
| | | catch(e) { |
| | | return false; |
| | | } |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | this.state = current_state; |
| | | if (this.spelling_state_observer != null && this.report_state_change) |
| | | this.spelling_state_observer(current_state, this); |
| | | } |
| | | }; |
| | | |
| | | this.setReportStateChange = function(bool) { |
| | | this.report_state_change = bool; |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | ///// |
| | | this.getUrl = function() { |
| | | return this.server_url + GOOGIE_CUR_LANG; |
| | | } |
| | | }; |
| | | |
| | | this.escapeSpecial = function(val) { |
| | | return val.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">"); |
| | | } |
| | | }; |
| | | |
| | | this.createXMLReq = function (text) { |
| | | return '<?xml version="1.0" encoding="utf-8" ?>' |
| | | + '<spellrequest textalreadyclipped="0" ignoredups="0" ignoredigits="1" ignoreallcaps="1">' |
| | | + '<text>' + text + '</text></spellrequest>'; |
| | | } |
| | | }; |
| | | |
| | | this.spellCheck = function(ignore) { |
| | | this.cnt_errors_fixed = 0; |
| | |
| | | ref.removeIndicator(); |
| | | } |
| | | }); |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | ///// |
| | | this.parseResult = function(r_text) { |
| | | // Returns an array: result[item] -> ['attrs'], ['suggestions'] |
| | | var re_split_attr_c = /\w+="(\d+|true)"/g; |
| | | var re_split_text = /\t/g; |
| | | |
| | | var matched_c = r_text.match(/<c[^>]*>[^<]*<\/c>/g); |
| | | var results = new Array(); |
| | | var re_split_attr_c = /\w+="(\d+|true)"/g, |
| | | re_split_text = /\t/g, |
| | | matched_c = r_text.match(/<c[^>]*>[^<]*<\/c>/g), |
| | | results = []; |
| | | |
| | | if (matched_c == null) |
| | | return results; |
| | | |
| | | for (var i=0; i < matched_c.length; i++) { |
| | | var item = new Array(); |
| | | for (var i=0, len=matched_c.length; i < len; i++) { |
| | | var item = []; |
| | | this.errorFound(); |
| | | |
| | | //Get attributes |
| | | item['attrs'] = new Array(); |
| | | var split_c = matched_c[i].match(re_split_attr_c); |
| | | item['attrs'] = []; |
| | | var c_attr, val, |
| | | split_c = matched_c[i].match(re_split_attr_c); |
| | | for (var j=0; j < split_c.length; j++) { |
| | | var c_attr = split_c[j].split(/=/); |
| | | var val = c_attr[1].replace(/"/g, ''); |
| | | c_attr = split_c[j].split(/=/); |
| | | val = c_attr[1].replace(/"/g, ''); |
| | | item['attrs'][c_attr[0]] = val != 'true' ? parseInt(val) : val; |
| | | } |
| | | |
| | | //Get suggestions |
| | | item['suggestions'] = new Array(); |
| | | var only_text = matched_c[i].replace(/<[^>]*>/g, ''); |
| | | var split_t = only_text.split(re_split_text); |
| | | item['suggestions'] = []; |
| | | var only_text = matched_c[i].replace(/<[^>]*>/g, ''), |
| | | split_t = only_text.split(re_split_text); |
| | | for (var k=0; k < split_t.length; k++) { |
| | | if(split_t[k] != '') |
| | | item['suggestions'].push(split_t[k]); |
| | |
| | | } |
| | | |
| | | return results; |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | this.createErrorWindow = function() { |
| | | this.error_window = document.createElement('div'); |
| | | $(this.error_window).addClass('googie_window').attr('googie_action_btn', '1'); |
| | | } |
| | | }; |
| | | |
| | | this.isErrorWindowShown = function() { |
| | | return $(this.error_window).is(':visible'); |
| | | } |
| | | }; |
| | | |
| | | this.hideErrorWindow = function() { |
| | | $(this.error_window).css('visibility', 'hidden'); |
| | | $(this.error_window_iframe).css('visibility', 'hidden'); |
| | | } |
| | | }; |
| | | |
| | | this.updateOrginalText = function(offset, old_value, new_value, id) { |
| | | var part_1 = this.orginal_text.substring(0, offset); |
| | | var part_2 = this.orginal_text.substring(offset+old_value.length); |
| | | var part_1 = this.orginal_text.substring(0, offset), |
| | | part_2 = this.orginal_text.substring(offset+old_value.length), |
| | | add_2_offset = new_value.length - old_value.length; |
| | | |
| | | this.orginal_text = part_1 + new_value + part_2; |
| | | $(this.text_area).val(this.orginal_text); |
| | | var add_2_offset = new_value.length - old_value.length; |
| | | for (var j=0; j < this.results.length; j++) { |
| | | for (var j=0, len=this.results.length; j<len; j++) { |
| | | //Don't edit the offset of the current item |
| | | if (j != id && j > id) |
| | | this.results[j]['attrs']['o'] += add_2_offset; |
| | | } |
| | | } |
| | | }; |
| | | |
| | | this.saveOldValue = function(elm, old_value) { |
| | | elm.is_changed = true; |
| | | elm.old_value = old_value; |
| | | } |
| | | }; |
| | | |
| | | this.createListSeparator = function() { |
| | | var td = document.createElement('td'); |
| | | var tr = document.createElement('tr'); |
| | | var td = document.createElement('td'), |
| | | tr = document.createElement('tr'); |
| | | |
| | | $(td).html(' ').attr('googie_action_btn', '1') |
| | | .css({'cursor': 'default', 'font-size': '3px', 'border-top': '1px solid #ccc', 'padding-top': '3px'}); |
| | | tr.appendChild(td); |
| | | |
| | | return tr; |
| | | } |
| | | }; |
| | | |
| | | this.correctError = function(id, elm, l_elm, rm_pre_space) { |
| | | var old_value = elm.innerHTML; |
| | | var new_value = l_elm.nodeType == 3 ? l_elm.nodeValue : l_elm.innerHTML; |
| | | var offset = this.results[id]['attrs']['o']; |
| | | var old_value = elm.innerHTML, |
| | | new_value = l_elm.nodeType == 3 ? l_elm.nodeValue : l_elm.innerHTML, |
| | | offset = this.results[id]['attrs']['o']; |
| | | |
| | | if (rm_pre_space) { |
| | | var pre_length = elm.previousSibling.innerHTML; |
| | |
| | | this.saveOldValue(elm, old_value); |
| | | |
| | | this.errorFixed(); |
| | | } |
| | | }; |
| | | |
| | | this.showErrorWindow = function(elm, id) { |
| | | if (this.show_menu_observer) |
| | | this.show_menu_observer(this); |
| | | |
| | | var ref = this; |
| | | var pos = $(elm).offset(); |
| | | var ref = this, |
| | | pos = $(elm).offset(), |
| | | table = document.createElement('table'), |
| | | list = document.createElement('tbody'); |
| | | |
| | | pos.top -= this.edit_layer.scrollTop; |
| | | |
| | | $(this.error_window).css({'visibility': 'visible', |
| | | 'top': (pos.top+20)+'px', 'left': (pos.left)+'px'}).html(''); |
| | | |
| | | var table = document.createElement('table'); |
| | | var list = document.createElement('tbody'); |
| | | |
| | | $(table).addClass('googie_list').attr('googie_action_btn', '1'); |
| | | |
| | |
| | | } |
| | | if (!changed) { |
| | | //Build up the result list |
| | | var suggestions = this.results[id]['suggestions']; |
| | | var offset = this.results[id]['attrs']['o']; |
| | | var len = this.results[id]['attrs']['l']; |
| | | var suggestions = this.results[id]['suggestions'], |
| | | offset = this.results[id]['attrs']['o'], |
| | | len = this.results[id]['attrs']['l'], |
| | | row, item, dummy; |
| | | |
| | | if (suggestions.length == 0) { |
| | | var row = document.createElement('tr'); |
| | | var item = document.createElement('td'); |
| | | var dummy = document.createElement('span'); |
| | | row = document.createElement('tr'), |
| | | item = document.createElement('td'), |
| | | dummy = document.createElement('span'); |
| | | |
| | | $(dummy).text(this.lang_no_suggestions); |
| | | $(item).attr('googie_action_btn', '1').css('cursor', 'default'); |
| | |
| | | list.appendChild(row); |
| | | } |
| | | |
| | | for (i=0; i < suggestions.length; i++) { |
| | | var row = document.createElement('tr'); |
| | | var item = document.createElement('td'); |
| | | var dummy = document.createElement('span'); |
| | | for (var i=0, len=suggestions.length; i < len; i++) { |
| | | row = document.createElement('tr'), |
| | | item = document.createElement('td'), |
| | | dummy = document.createElement('span'); |
| | | |
| | | $(dummy).html(suggestions[i]); |
| | | |
| | |
| | | |
| | | //The element is changed, append the revert |
| | | if (elm.is_changed && elm.innerHTML != elm.old_value) { |
| | | var old_value = elm.old_value; |
| | | var revert_row = document.createElement('tr'); |
| | | var revert = document.createElement('td'); |
| | | var rev_span = document.createElement('span'); |
| | | var old_value = elm.old_value, |
| | | revert_row = document.createElement('tr'), |
| | | revert = document.createElement('td'), |
| | | rev_span = document.createElement('span'); |
| | | |
| | | $(rev_span).addClass('googie_list_revert').html(this.lang_revert + ' ' + old_value); |
| | | |
| | |
| | | } |
| | | |
| | | //Append the edit box |
| | | var edit_row = document.createElement('tr'); |
| | | var edit = document.createElement('td'); |
| | | var edit_input = document.createElement('input'); |
| | | var ok_pic = document.createElement('img'); |
| | | var edit_form = document.createElement('form'); |
| | | var edit_row = document.createElement('tr'), |
| | | edit = document.createElement('td'), |
| | | edit_input = document.createElement('input'), |
| | | ok_pic = document.createElement('img'), |
| | | edit_form = document.createElement('form'); |
| | | |
| | | var onsub = function () { |
| | | if (edit_input.value != '') { |
| | |
| | | var e_elm = ref.extra_menu_items[i]; |
| | | |
| | | if (!e_elm[2] || e_elm[2](elm, ref)) { |
| | | var e_row = document.createElement('tr'); |
| | | var e_col = document.createElement('td'); |
| | | var e_row = document.createElement('tr'), |
| | | e_col = document.createElement('td'); |
| | | |
| | | $(e_col).html(e_elm[0]) |
| | | .bind('mouseover', ref.item_onmouseover) |
| | |
| | | } |
| | | loop(i+1); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | loop(0); |
| | | loop = null; |
| | |
| | | 'top': this.error_window.offsetTop, 'left': this.error_window.offsetLeft, |
| | | 'width': this.error_window.offsetWidth, 'height': this.error_window.offsetHeight}); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | return false; |
| | | }); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | this.resumeEditing = function() { |
| | | this.setStateChanged('ready'); |
| | |
| | | this.text_area.scrollTop = this.el_scroll_top; |
| | | } |
| | | this.checkSpellingState(false); |
| | | } |
| | | }; |
| | | |
| | | this.createErrorLink = function(text, id) { |
| | | var elm = document.createElement('span'); |
| | | var ref = this; |
| | | var d = function (e) { |
| | | var elm = document.createElement('span'), |
| | | ref = this, |
| | | d = function (e) { |
| | | ref.showErrorWindow(elm, id); |
| | | d = null; |
| | | return false; |
| | |
| | | .attr({'googie_action_btn' : '1', 'g_id' : id, 'is_corrected' : false}); |
| | | |
| | | return elm; |
| | | } |
| | | }; |
| | | |
| | | this.createPart = function(txt_part) { |
| | | if (txt_part == " ") |
| | |
| | | var span = document.createElement('span'); |
| | | $(span).html(txt_part); |
| | | return span; |
| | | } |
| | | }; |
| | | |
| | | this.showErrorsInIframe = function() { |
| | | var output = document.createElement('div') |
| | | var pointer = 0; |
| | | var results = this.results; |
| | | var output = document.createElement('div'), |
| | | pointer = 0, |
| | | results = this.results; |
| | | |
| | | if (results.length > 0) { |
| | | for (var i=0; i < results.length; i++) { |
| | | var offset = results[i]['attrs']['o']; |
| | | var len = results[i]['attrs']['l']; |
| | | var part_1_text = this.orginal_text.substring(pointer, offset); |
| | | var part_1 = this.createPart(part_1_text); |
| | | for (var i=0, length=results.length; i < length; i++) { |
| | | var offset = results[i]['attrs']['o'], |
| | | len = results[i]['attrs']['l'], |
| | | part_1_text = this.orginal_text.substring(pointer, offset), |
| | | part_1 = this.createPart(part_1_text); |
| | | |
| | | output.appendChild(part_1); |
| | | pointer += offset - pointer; |
| | |
| | | output.appendChild(err_link); |
| | | pointer += len; |
| | | } |
| | | |
| | | //Insert the rest of the orginal text |
| | | var part_2_text = this.orginal_text.substr(pointer, this.orginal_text.length); |
| | | var part_2 = this.createPart(part_2_text); |
| | | var part_2_text = this.orginal_text.substr(pointer, this.orginal_text.length), |
| | | part_2 = this.createPart(part_2_text); |
| | | |
| | | output.appendChild(part_2); |
| | | } |
| | |
| | | } |
| | | |
| | | // this.edit_layer.scrollTop = this.ta_scroll_top; |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | .width(100).attr('googie_action_btn', '1'); |
| | | |
| | | //Build up the result list |
| | | var table = document.createElement('table'); |
| | | var list = document.createElement('tbody'); |
| | | var ref = this; |
| | | var table = document.createElement('table'), |
| | | list = document.createElement('tbody'), |
| | | ref = this, |
| | | row, item, span; |
| | | |
| | | $(table).addClass('googie_list').width('100%'); |
| | | this.lang_elms = new Array(); |
| | | this.lang_elms = []; |
| | | |
| | | for (i=0; i < this.langlist_codes.length; i++) { |
| | | var row = document.createElement('tr'); |
| | | var item = document.createElement('td'); |
| | | var span = document.createElement('span'); |
| | | row = document.createElement('tr'); |
| | | item = document.createElement('td'); |
| | | span = document.createElement('span'); |
| | | |
| | | $(span).text(this.lang_to_word[this.langlist_codes[i]]); |
| | | this.lang_elms.push(item); |
| | |
| | | |
| | | table.appendChild(list); |
| | | this.language_window.appendChild(table); |
| | | } |
| | | }; |
| | | |
| | | this.isLangWindowShown = function() { |
| | | return $(this.language_window).is(':hidden'); |
| | | } |
| | | }; |
| | | |
| | | this.hideLangWindow = function() { |
| | | $(this.language_window).css('visibility', 'hidden'); |
| | | $(this.switch_lan_pic).removeClass().addClass('googie_lang_3d_on'); |
| | | } |
| | | }; |
| | | |
| | | this.deHighlightCurSel = function() { |
| | | $(this.lang_cur_elm).removeClass().addClass('googie_list_onout'); |
| | | } |
| | | }; |
| | | |
| | | this.highlightCurSel = function() { |
| | | if (GOOGIE_CUR_LANG == null) |
| | |
| | | this.lang_elms[i].className = "googie_list_onout"; |
| | | } |
| | | } |
| | | } |
| | | }; |
| | | |
| | | this.showLangWindow = function(elm) { |
| | | if (this.show_menu_observer) |
| | |
| | | this.createLangWindow(); |
| | | $('body').append(this.language_window); |
| | | |
| | | var pos = $(elm).offset(); |
| | | var top = pos.top + $(elm).height(); |
| | | var left = this.change_lang_pic_placement == 'right' ? |
| | | var pos = $(elm).offset(), |
| | | top = pos.top + $(elm).height(), |
| | | left = this.change_lang_pic_placement == 'right' ? |
| | | pos.left - 100 + $(elm).width() : pos.left + $(elm).width(); |
| | | |
| | | $(this.language_window).css({'visibility': 'visible', 'top' : top+'px','left' : left+'px'}); |
| | | |
| | | this.highlightCurSel(); |
| | | } |
| | | }; |
| | | |
| | | this.createChangeLangPic = function() { |
| | | var img = $('<img>') |
| | | .attr({src: this.img_dir + 'change_lang.gif', 'alt': 'Change language', 'googie_action_btn': '1'}); |
| | | |
| | | var switch_lan = document.createElement('span'); |
| | | var ref = this; |
| | | .attr({src: this.img_dir + 'change_lang.gif', 'alt': 'Change language', 'googie_action_btn': '1'}), |
| | | switch_lan = document.createElement('span'); |
| | | ref = this; |
| | | |
| | | $(switch_lan).addClass('googie_lang_3d_on') |
| | | .append(img) |
| | |
| | | }); |
| | | |
| | | return switch_lan; |
| | | } |
| | | }; |
| | | |
| | | this.createSpellDiv = function() { |
| | | var span = document.createElement('span'); |
| | |
| | | $(span).append(' ').append($('<img>').attr('src', this.img_dir + 'spellc.gif')); |
| | | } |
| | | return span; |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | |
| | | window.setTimeout(no_spell_errors, 1000); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | this.resumeEditingState = function() { |
| | | this.setStateChanged('resume_editing'); |
| | |
| | | |
| | | try { this.edit_layer.scrollTop = this.ta_scroll_top; } |
| | | catch (e) {}; |
| | | } |
| | | }; |
| | | |
| | | this.checkSpellingState = function(fire) { |
| | | if (fire) |
| | |
| | | else |
| | | this.switch_lan_pic = document.createElement('span'); |
| | | |
| | | var span_chck = this.createSpellDiv(); |
| | | var ref = this; |
| | | var span_chck = this.createSpellDiv(), |
| | | ref = this; |
| | | |
| | | if (this.custom_spellcheck_starter) |
| | | $(span_chck).bind('click', function(e) { ref.custom_spellcheck_starter() }); |
| | |
| | | } |
| | | |
| | | this.spell_span = span_chck; |
| | | } |
| | | }; |
| | | |
| | | |
| | | ////// |
| | |
| | | ///// |
| | | this.isDefined = function(o) { |
| | | return (o != 'undefined' && o != null) |
| | | } |
| | | }; |
| | | |
| | | this.errorFixed = function() { |
| | | this.cnt_errors_fixed++; |
| | |
| | | this.hideErrorWindow(); |
| | | this.all_errors_fixed_observer(); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | this.errorFound = function() { |
| | | this.cnt_errors++; |
| | | } |
| | | }; |
| | | |
| | | this.createCloseButton = function(c_fn) { |
| | | return this.createButton(this.lang_close, 'googie_list_close', c_fn); |
| | | } |
| | | }; |
| | | |
| | | this.createButton = function(name, css_class, c_fn) { |
| | | var btn_row = document.createElement('tr'); |
| | | var btn = document.createElement('td'); |
| | | var spn_btn; |
| | | var btn_row = document.createElement('tr'), |
| | | btn = document.createElement('td'), |
| | | spn_btn; |
| | | |
| | | if (css_class) { |
| | | spn_btn = document.createElement('span'); |
| | |
| | | btn_row.appendChild(btn); |
| | | |
| | | return btn_row; |
| | | } |
| | | }; |
| | | |
| | | this.removeIndicator = function(elm) { |
| | | //$(this.indicator).remove(); |
| | | // roundcube mod. |
| | | if (window.rcmail) |
| | | rcmail.set_busy(false); |
| | | } |
| | | }; |
| | | |
| | | this.appendIndicator = function(elm) { |
| | | // modified by roundcube |
| | |
| | | var link = document.createElement('a'); |
| | | $(link).attr({'href': 'javascript:;', 'name': name}); |
| | | return link; |
| | | } |
| | | }; |
| | | |
| | | this.item_onmouseover = function(e) { |
| | | if (this.className != "googie_list_revert" && this.className != "googie_list_close") |
| | | this.className = "googie_list_onhover"; |
| | | if (this.className != 'googie_list_revert' && this.className != 'googie_list_close') |
| | | this.className = 'googie_list_onhover'; |
| | | else |
| | | this.parentNode.className = "googie_list_onhover"; |
| | | } |
| | | this.parentNode.className = 'googie_list_onhover'; |
| | | }; |
| | | this.item_onmouseout = function(e) { |
| | | if (this.className != "googie_list_revert" && this.className != "googie_list_close") |
| | | this.className = "googie_list_onout"; |
| | | if (this.className != 'googie_list_revert' && this.className != 'googie_list_close') |
| | | this.className = 'googie_list_onout'; |
| | | else |
| | | this.parentNode.className = "googie_list_onout"; |
| | | } |
| | | this.parentNode.className = 'googie_list_onout'; |
| | | }; |
| | | |
| | | |
| | | }; |