diff options
author | Marcel Klehr <mklehr@gmx.net> | 2013-03-27 12:28:54 +0100 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2013-03-27 12:28:54 +0100 |
commit | cbee50d42d8a528c524ad5a76a54bf59e8978689 (patch) | |
tree | 443e1034a0d202cb39a243e1301b7f53e4ac8174 /src/static/js/admin | |
parent | bc8d6d4c45f443716d3334e1606cf7664b9a97ac (diff) | |
download | etherpad-lite-cbee50d42d8a528c524ad5a76a54bf59e8978689.zip |
/admin/plugins: Display a tooltip when hovering the plugin details link
Diffstat (limited to 'src/static/js/admin')
-rw-r--r-- | src/static/js/admin/plugins.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/admin/plugins.js b/src/static/js/admin/plugins.js index e2e07e96..41affa74 100644 --- a/src/static/js/admin/plugins.js +++ b/src/static/js/admin/plugins.js @@ -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]); } |