diff options
Diffstat (limited to 'share/www/script/futon.js')
-rw-r--r-- | share/www/script/futon.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/futon.js b/share/www/script/futon.js index b9f05791..77bd8cc8 100644 --- a/share/www/script/futon.js +++ b/share/www/script/futon.js @@ -65,9 +65,9 @@ recentDbs.sort(); $.each(recentDbs, function(idx, name) { if (name) { - $("#dbs").append("<li><a href='database.html?" + - encodeURIComponent(name) + "'>" + name + + $("#dbs").append("<li>" + "<button class='remove' title='Remove from list' value='" + name + "'></button>" + + "<a href='database.html?" + encodeURIComponent(name) + "'>" + name + "</a></li>"); } }); |