/admin/plugins: Display a tooltip when hovering the plugin details link

This commit is contained in:
Marcel Klehr 2013-03-27 12:28:54 +01:00
parent bc8d6d4c45
commit cbee50d42d

View file

@ -72,7 +72,7 @@ $(document).ready(function () {
for (attr in plugin) {
if(attr == "name"){ // Hack to rewrite URLS into name
row.find(".name").html("<a target='_blank' href='https://npmjs.org/package/"+plugin['name']+"'>"+plugin['name'].substr(3)+"</a>"); // remove 'ep_'
row.find(".name").html("<a target='_blank' title='Plugin details' href='https://npmjs.org/package/"+plugin['name']+"'>"+plugin['name'].substr(3)+"</a>"); // remove 'ep_'
}else{
row.find("." + attr).html(plugin[attr]);
}