Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2010-12-14 08:54:38 +0300
committermattpiwik <matthieu.aubry@gmail.com>2010-12-14 08:54:38 +0300
commit7c149f875a0df4ba99ae9f3563be9c5afc1243a4 (patch)
tree9031e1fe820662735af6c0dc1a17dd6c1fd6bde3 /libs/jquery
parent8cbde0b4b686dfaba138d488119c388a0c2b2e39 (diff)
Now displaying the language original name + english translation on hover (title attribute) in the language selector (I was getting confused with Arabic vs Ahmaric, Telugu, Traditional VS Simplified chinese vs Korean vs Japanese, Russian Vs Belarusian and more...)
git-svn-id: http://dev.piwik.org/svn/trunk@3443 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'libs/jquery')
-rw-r--r--libs/jquery/fdd2div-modified.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/jquery/fdd2div-modified.js b/libs/jquery/fdd2div-modified.js
index 2f04934b00..91367f9424 100644
--- a/libs/jquery/fdd2div-modified.js
+++ b/libs/jquery/fdd2div-modified.js
@@ -98,7 +98,7 @@
if($(i).attr('href')) {
child_options+="<li><b><a target='_blank' href='"+$(i).attr('href')+"'>"+i.firstChild.nodeValue+"</a></b></li>\n";
} else {
- child_options+="<li><a href='"+FormAction+SelectName+"="+OptionValue+"'>"+i.firstChild.nodeValue+"</a></li>\n";
+ child_options+="<li><a title='"+$(i).attr('title')+"' href='"+FormAction+SelectName+"="+OptionValue+"'>"+i.firstChild.nodeValue+"</a></li>\n";
}
}
}