Skip to content

Commit

Permalink
Apply googiespell fix from trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
thomascube committed May 18, 2009
1 parent cc49581 commit 3758642
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion program/js/googiespell.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ this.createListSeparator = function() {


this.correctError = function(id, elm, l_elm, rm_pre_space) { this.correctError = function(id, elm, l_elm, rm_pre_space) {
var old_value = elm.innerHTML; var old_value = elm.innerHTML;
var new_value = l_elm.innerHTML; var new_value = l_elm.nodeType == 3 ? l_elm.nodeValue : l_elm.innerHTML;
var offset = this.results[id]['attrs']['o']; var offset = this.results[id]['attrs']['o'];


if (rm_pre_space) { if (rm_pre_space) {
Expand Down
7 changes: 5 additions & 2 deletions skins/default/googiespell.css
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
} }


.googie_list_onout { .googie_list_onout {
background-color: #F6F6F6; background-color: #fff;
} }


.googie_list_selected { .googie_list_selected {
Expand All @@ -67,9 +67,12 @@


.googie_list_revert { .googie_list_revert {
font-size: 11px; font-size: 11px;
color: #b91479; color: #b91414;
} }


.googie_list_revert:hover {
color: #fff;
}
.googie_link { .googie_link {
color: #b91414; color: #b91414;
text-decoration: underline; text-decoration: underline;
Expand Down

0 comments on commit 3758642

Please sign in to comment.