summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-04-25 17:35:55 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-04-25 17:35:55 +0000
commitada4d49c30d8c31035efcf186056a773dd8f3d2b (patch)
tree9362c122d100ef20017d015b35f40f668fe6cdc3
parentf268bea4e1ffa24bf792585935f9fef9f2a83f2d (diff)
- Fix spellchecker languages list on IE8
git-svn-id: https://svn.roundcube.net/trunk@6127 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/skins/larry/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/skins/larry/ui.js b/roundcubemail/skins/larry/ui.js
index 04e74b7b5..ab56910bd 100644
--- a/roundcubemail/skins/larry/ui.js
+++ b/roundcubemail/skins/larry/ui.js
@@ -550,7 +550,7 @@ function rcube_mail_ui()
for (i in rcmail.env.spell_langs) {
li = $('<li>');
- link = $('<a href="#">').text(rcmail.env.spell_langs[i])
+ link = $('<a href="#"></a>').text(rcmail.env.spell_langs[i])
.addClass('active').data('lang', i)
.click(function() {
rcmail.spellcheck_lang_set($(this).data('lang'));